-- 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\",\"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}]'),(1091,837,'_oembed_5e30efa0e5c7dced5a940958003f48d6','<iframe src=\"https://player.vimeo.com/video/313597399?dnt=1&app_id=122963\" width=\"750\" height=\"422\" frameborder=\"0\" title=\"Magic Needle Show 2/5\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1092,837,'_oembed_time_5e30efa0e5c7dced5a940958003f48d6','1555274677'),(1100,895,'_elementor_template_type','page'),(1101,895,'_elementor_edit_mode','builder'),(1102,895,'_wp_page_template','default'),(1103,895,'_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\",\"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}]'),(1104,893,'_elementor_version','2.5.13'),(1105,893,'_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:{}}}'),(1563,990,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1564,990,'_elementor_edit_mode','builder'),(1565,990,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (1566,990,'_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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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}]'),(1544,987,'_elementor_template_type','post'),(1545,987,'_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\":[]},\"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\":\"#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\":[]},\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1345,936,'_elementor_edit_mode','builder'),(1346,936,'_elementor_template_type','post'),(1347,936,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":929,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/wild-flowers-571940_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\":\"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\":\"#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\":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\":\"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\":[]},\"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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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>Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/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>\"},\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1161,905,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1162,905,'_elementor_edit_mode','builder'),(1163,905,'_elementor_template_type','post'),(1164,905,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"#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\":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\":\"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\\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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"d042592\",\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"isInner\":true},{\"id\":\"043d9c0\",\"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,\"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\":\"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\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"<p><a href=\\\"https:\\/\\/evergreenwellness.com\\/tcm-intro\\/\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke-research\\/\\\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\\u200b<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke\\/\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/heart\\/\\\">TCM and Heart Diseases<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/infertility\\/\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1147,903,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1148,903,'_elementor_edit_mode','builder'),(1149,903,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (1150,903,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"#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\":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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#ed4990\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"icon\"},{\"id\":\"1a74396\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Passionate \",\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"icon\"},{\"id\":\"b1a6cb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Well Trained\",\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"icon\"},{\"id\":\"bd8f4e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Experienced\",\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"d042592\",\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"isInner\":true},{\"id\":\"043d9c0\",\"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,\"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\":\"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\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"<p><a href=\\\"https:\\/\\/evergreenwellness.com\\/tcm-intro\\/\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke-research\\/\\\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\\u200b<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke\\/\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/heart\\/\\\">TCM and Heart Diseases<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/infertility\\/\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"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}],\"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\":\"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\":\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1121,898,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1122,898,'_elementor_edit_mode','builder'),(1123,898,'_elementor_template_type','post'),(1124,898,'_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\":\"#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\"},{\"id\":\"dd29a2b\",\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#ed4990\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"icon\"},{\"id\":\"1a74396\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Passionate \",\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"icon\"},{\"id\":\"b1a6cb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Well Trained\",\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"icon\"},{\"id\":\"bd8f4e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Experienced\",\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"d042592\",\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"isInner\":true},{\"id\":\"043d9c0\",\"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,\"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\":\"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\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"<p><a href=\\\"https:\\/\\/evergreenwellness.com\\/tcm-intro\\/\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke-research\\/\\\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\\u200b<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke\\/\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/heart\\/\\\">TCM and Heart Diseases<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/infertility\\/\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"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\":\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1125,898,'_elementor_version','2.5.13'),(1126,898,'_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:{}}}'),(1166,905,'_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:{}}}'),(1128,837,'_oembed_d8a285584726625cb68c82b7cc0e3485','<iframe src=\"https://player.vimeo.com/video/313597516?dnt=1&app_id=122963\" width=\"750\" height=\"422\" frameborder=\"0\" title=\"Magic Needle Show 3/5\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1129,837,'_oembed_time_d8a285584726625cb68c82b7cc0e3485','1555279461'),(1130,837,'_oembed_19abc5c2b9c9eb763e0d6030b160cb99','<iframe src=\"https://player.vimeo.com/video/313597633?dnt=1&app_id=122963\" width=\"750\" height=\"422\" frameborder=\"0\" title=\"Magic Needle Show 4/5\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1131,837,'_oembed_time_19abc5c2b9c9eb763e0d6030b160cb99','1555279461'),(1132,837,'_oembed_5f279ca4dfcb5798b363a6ae5d809273','<iframe src=\"https://player.vimeo.com/video/315338770?dnt=1&app_id=122963\" width=\"750\" height=\"422\" frameborder=\"0\" title=\"Magic Needle Show 5/5\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1133,837,'_oembed_time_5f279ca4dfcb5798b363a6ae5d809273','1555279461'),(1183,910,'_elementor_template_type','post'),(1184,910,'_elementor_version','2.5.13'),(1185,908,'_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:{}}}'),(1151,903,'_elementor_version','2.5.13'),(1152,903,'_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:{}}}'),(1186,908,'_elementor_data','[{\"id\":\"d252a18\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e71b223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1187,911,'_edit_lock','1555630389:1'),(1188,911,'_edit_last','1'),(1189,911,'neve_meta_content_width','70'),(1203,915,'_elementor_version','2.5.13'),(1204,915,'_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:{}}}'),(1141,900,'_wp_attached_file','2019/04/heather-4087961_1920.jpg'),(1142,900,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:32:\"2019/04/heather-4087961_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"heather-4087961_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:32:\"heather-4087961_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:32:\"heather-4087961_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:33:\"heather-4087961_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:32:\"heather-4087961_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:\"85\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1143,901,'_wp_attached_file','2019/04/tulips-4096397_1920.jpg'),(1144,901,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1167;s:4:\"file\";s:31:\"2019/04/tulips-4096397_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"tulips-4096397_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:\"tulips-4096397_1920-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"tulips-4096397_1920-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"tulips-4096397_1920-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"tulips-4096397_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:14:\"Canon EOS 200D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"208\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1145,902,'_wp_attached_file','2019/04/nature-4110060_1920.jpg'),(1146,902,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:31:\"2019/04/nature-4110060_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"nature-4110060_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:\"nature-4110060_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:\"nature-4110060_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:32:\"nature-4110060_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:31:\"nature-4110060_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:{}}}'),(1197,914,'_wp_attached_file','2019/04/rose-3159554_1920.jpg'),(1198,914,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:29:\"2019/04/rose-3159554_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"rose-3159554_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-3159554_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-3159554_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-3159554_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-3159554_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:{}}}'),(1168,782,'_wp_trash_meta_status','publish'),(1169,782,'_wp_trash_meta_time','1555287133'),(1170,782,'_wp_desired_post_slug','blog'),(1171,836,'_wp_trash_meta_status','publish'),(1172,836,'_wp_trash_meta_time','1555287133'),(1173,836,'_wp_desired_post_slug','neve-blog'),(1174,908,'_edit_lock','1555287470:1'),(1175,908,'_edit_last','1'),(1176,908,'_elementor_edit_mode','builder'),(1177,908,'neve_meta_content_width','70'),(1178,908,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1179,908,'_elementor_template_type','post'),(1180,908,'_elementor_version','2.5.13'),(1181,910,'_elementor_edit_mode','builder'),(1182,910,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1165,905,'_elementor_version','2.5.13'),(1201,915,'_elementor_template_type','post'),(1202,915,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"#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\":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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\\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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"<p><a href=\\\"https:\\/\\/evergreenwellness.com\\/tcm-intro\\/\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke-research\\/\\\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\\u200b<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke\\/\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/heart\\/\\\">TCM and Heart Diseases<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/infertility\\/\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1199,915,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1200,915,'_elementor_edit_mode','builder'),(1220,919,'_elementor_version','2.5.13'),(1221,919,'_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:{}}}'),(1218,919,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (1219,919,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"#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\":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\":\"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\":[]},\"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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"<p><a href=\\\"https:\\/\\/evergreenwellness.com\\/tcm-intro\\/\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke-research\\/\\\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\\u200b<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke\\/\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/heart\\/\\\">TCM and Heart Diseases<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/infertility\\/\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1216,919,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1217,919,'_elementor_edit_mode','builder'),(1226,232,'_menu_item_target',''),(1227,232,'_menu_item_xfn',''),(1228,232,'obfx_menu_icon',''),(1229,233,'_menu_item_target',''),(1230,233,'_menu_item_xfn',''),(1231,233,'obfx_menu_icon',''),(1232,235,'_menu_item_target',''),(1233,235,'_menu_item_xfn',''),(1234,235,'obfx_menu_icon',''),(1235,239,'_menu_item_target',''),(1236,239,'_menu_item_xfn',''),(1237,239,'obfx_menu_icon',''),(1238,243,'_menu_item_target',''),(1239,243,'_menu_item_xfn',''),(1240,243,'obfx_menu_icon',''),(1251,921,'_elementor_template_type','post'),(1252,921,'_elementor_version','2.5.14'),(1254,923,'_elementor_template_type','section'),(1255,923,'_elementor_edit_mode','builder'),(1256,924,'_elementor_template_type','page'),(1257,924,'_elementor_edit_mode','builder'),(1258,923,'_wp_page_template','default'),(1259,923,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"#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}]'),(1260,925,'_elementor_template_type','page'),(1261,925,'_elementor_edit_mode','builder'),(1262,925,'_wp_page_template','default'),(1263,925,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"#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}]'),(1264,923,'_elementor_version','2.5.13'),(1265,923,'_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:{}}}'),(1268,921,'_elementor_data','[{\"id\":\"52817f92\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":972,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/holiday-house-177401_1280.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\":\"7ec56c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58b22b01\",\"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\":\"5c622b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction to Traditional Chinese Medicine <br> \\nHolistic Concept, Dynamic View and Natural Therapies\",\"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\":\"389ffead\",\"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\":\"68806146\",\"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\":\"7c0fd725\",\"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\":\"69a174ae\",\"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\":\"2b5ee5e9\",\"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\":\"045ed62\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9108bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c17abea\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1b4e64\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"22a8834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"aa02a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction to Traditional Chinese Medicine <br> <br>\\nHolistic Concept, Dynamic View and Natural Therapies\",\"align\":\"center\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"246d6b5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb8ef4a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"0b00259\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"89e1a57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d13f7d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9654fd\",\"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\":\"31a1634\",\"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\":\"ff50e26\",\"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\":\"c3d81c1\",\"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\":\"b0e6f31\",\"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}]'),(1294,930,'_elementor_edit_mode','builder'),(1295,930,'_wp_page_template','default'),(1296,930,'_elementor_template_type','post'),(1297,930,'_elementor_version','2.5.13'),(1298,930,'_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:{}}}'),(1299,930,'_elementor_data','[{\"id\":\"d6b4c4f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f9b704\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e7b56e\",\"elType\":\"widget\",\"settings\":{\"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\":[]},\"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\":0.3,\"sizes\":[]},\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/wild-flowers-571940_1920.jpg\",\"id\":929}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1b4e64\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"22a8834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"aa02a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction to Traditional Chinese Medicine <br>\\nHolistic Concept, Dynamic View and Natural Therapies\",\"align\":\"center\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb8ef4a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b00259\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d13f7d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1275,927,'_elementor_edit_mode','builder'),(1276,927,'_wp_page_template','default'),(1277,927,'_elementor_template_type','post'),(1278,927,'_elementor_version','2.5.13'),(1279,927,'_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:{}}}'),(1280,927,'_elementor_data','[{\"id\":\"d6b4c4f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f9b704\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e7b56e\",\"elType\":\"widget\",\"settings\":{\"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\":[]},\"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\":0.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6315f99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8462a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"089d71d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<section class=\\\"elementor-element elementor-element-aa21ea5 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"aa21ea5\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-35387f8 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"35387f8\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-b799205 elementor-widget elementor-widget-heading\\\" data-id=\\\"b799205\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\"><div class=\\\"elementor-widget-container\\\"><h1 class=\\\"elementor-heading-title elementor-size-default\\\">Introduction to Traditional Chinese Medicine<\\/h1><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-5b8e218 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"5b8e218\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-2aa0de6 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"2aa0de6\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-5a78d05 elementor-widget elementor-widget-heading\\\" data-id=\\\"5a78d05\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\"><div class=\\\"elementor-widget-container\\\"><h2 class=\\\"elementor-heading-title elementor-size-default\\\">Holistic Concept, Dynamic View and Natural Therapies<\\/h2><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-aed9a62 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"aed9a62\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-011553c elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"011553c\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-3f6d792 elementor-widget elementor-widget-spacer\\\" data-id=\\\"3f6d792\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"spacer.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-spacer\\\"><div class=\\\"elementor-spacer-inner\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-decac64 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"decac64\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-1c97c02 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"1c97c02\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-b35eec5 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"b35eec5\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1282,928,'_elementor_edit_mode','builder'),(1283,928,'_wp_page_template','default'),(1284,928,'_elementor_template_type','post'),(1285,928,'_elementor_version','2.5.13'),(1286,928,'_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:{}}}'),(1287,928,'_elementor_data','[{\"id\":\"d6b4c4f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f9b704\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e7b56e\",\"elType\":\"widget\",\"settings\":{\"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\":[]},\"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\":0.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6315f99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8462a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"089d71d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<section class=\\\"elementor-element elementor-element-aa21ea5 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"aa21ea5\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-35387f8 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"35387f8\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-b799205 elementor-widget elementor-widget-heading\\\" data-id=\\\"b799205\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\"><div class=\\\"elementor-widget-container\\\"><h1 class=\\\"elementor-heading-title elementor-size-default\\\">Introduction to Traditional Chinese Medicine<\\/h1><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-5b8e218 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"5b8e218\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-2aa0de6 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"2aa0de6\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-5a78d05 elementor-widget elementor-widget-heading\\\" data-id=\\\"5a78d05\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\"><div class=\\\"elementor-widget-container\\\"><h2 class=\\\"elementor-heading-title elementor-size-default\\\">Holistic Concept, Dynamic View and Natural Therapies<\\/h2><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-aed9a62 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"aed9a62\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-011553c elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"011553c\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-3f6d792 elementor-widget elementor-widget-spacer\\\" data-id=\\\"3f6d792\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"spacer.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-spacer\\\"><div class=\\\"elementor-spacer-inner\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-decac64 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"decac64\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-1c97c02 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"1c97c02\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-b35eec5 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"b35eec5\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1269,926,'_elementor_edit_mode','builder'),(1270,926,'_wp_page_template','default'),(1271,926,'_elementor_template_type','post'),(1272,926,'_elementor_version','2.5.13'),(1273,926,'_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:{}}}'),(1274,926,'_elementor_data','[{\"id\":\"20c15ab8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\",\"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_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\":\"1c3a1f2b\",\"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\":\"5b04710a\",\"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)\"},\"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\":\"20bfb2ea\",\"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\":\"41a92f9e\",\"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},\"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\":\"547559af\",\"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},\"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\":\"30be1356\",\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"button\"}],\"isInner\":true},{\"id\":\"6faf322d\",\"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},\"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\":\"2d7eb9e8\",\"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\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1289,921,'neve_meta_container','full-width'),(1290,921,'neve_meta_sidebar','full-width'),(1291,921,'neve_meta_disable_title','on'),(1292,929,'_wp_attached_file','2019/04/wild-flowers-571940_1920.jpg'),(1293,929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:849;s:4:\"file\";s:36:\"2019/04/wild-flowers-571940_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"wild-flowers-571940_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:36:\"wild-flowers-571940_1920-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"wild-flowers-571940_1920-768x340.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"wild-flowers-571940_1920-1024x453.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:36:\"wild-flowers-571940_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:{}}}'),(1319,933,'_elementor_edit_mode','builder'),(1312,932,'_elementor_edit_mode','builder'),(1313,932,'_wp_page_template','default'),(1314,932,'_elementor_template_type','post'),(1315,932,'_elementor_version','2.5.13'),(1316,932,'_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:{}}}'),(1317,932,'_elementor_data','[{\"id\":\"d6b4c4f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f9b704\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e7b56e\",\"elType\":\"widget\",\"settings\":{\"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\":[]},\"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\":0.3,\"sizes\":[]},\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/wild-flowers-571940_1920.jpg\",\"id\":929},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1b4e64\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"22a8834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"aa02a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction to Traditional Chinese Medicine <br>\\nHolistic Concept, Dynamic View and Natural Therapies\",\"align\":\"center\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb8ef4a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b00259\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d13f7d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1320,933,'_wp_page_template','default'),(1321,933,'_elementor_template_type','post'),(1322,933,'_elementor_version','2.5.13'),(1323,933,'_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:{}}}'),(1324,933,'_elementor_data','[{\"id\":\"d6b4c4f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8f9b704\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e7b56e\",\"elType\":\"widget\",\"settings\":{\"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\":[]},\"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\":0.3,\"sizes\":[]},\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/wild-flowers-571940_1920.jpg\",\"id\":929},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1b4e64\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"22a8834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"aa02a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction to Traditional Chinese Medicine <br>\\nHolistic Concept, Dynamic View and Natural Therapies\",\"align\":\"center\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb8ef4a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b00259\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d13f7d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1344,936,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1326,934,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1327,934,'_elementor_edit_mode','builder'),(1328,934,'_elementor_template_type','post'),(1329,934,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":929,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/wild-flowers-571940_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\":\"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\":\"#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\":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\":\"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\":[]},\"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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"<p><a href=\\\"https:\\/\\/evergreenwellness.com\\/tcm-intro\\/\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke-research\\/\\\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\\u200b<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/stroke\\/\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/heart\\/\\\">TCM and Heart Diseases<\\/a><\\/p><p><a href=\\\"https:\\/\\/evergreenwellness.com\\/infertility\\/\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1330,934,'_elementor_version','2.5.13'),(1331,934,'_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:{}}}'),(1334,935,'_menu_item_type','post_type'),(1335,935,'_menu_item_menu_item_parent','0'),(1336,935,'_menu_item_object_id','837'),(1337,935,'_menu_item_object','page'),(1338,935,'_menu_item_target',''),(1339,935,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1340,935,'_menu_item_xfn',''),(1341,935,'_menu_item_url',''),(1343,935,'obfx_menu_icon',''),(1348,936,'_elementor_version','2.5.13'),(1349,936,'_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:{}}}'),(1352,937,'_elementor_edit_mode','builder'),(1353,937,'_elementor_template_type','post'),(1354,937,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":929,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/wild-flowers-571940_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\":\"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\":\"#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\":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\":\"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\":[]},\"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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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>Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1355,937,'_elementor_version','2.5.13');
INSERT INTO `wp9z_postmeta` VALUES (1356,937,'_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:{}}}'),(1385,943,'_wp_attached_file','2019/04/water-lily-2334209_1920.jpg'),(1386,943,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1065;s:4:\"file\";s:35:\"2019/04/water-lily-2334209_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"water-lily-2334209_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-2334209_1920-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"water-lily-2334209_1920-768x426.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"water-lily-2334209_1920-1024x568.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:35:\"water-lily-2334209_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:14:\"Canon EOS 100D\";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.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1542,987,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1358,938,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1359,938,'_elementor_edit_mode','builder'),(1360,938,'_elementor_template_type','post'),(1361,938,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":929,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/wild-flowers-571940_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\":\"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\":\"#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\":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\":\"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\":[]},\"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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1362,938,'_elementor_version','2.5.13'),(1363,938,'_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:{}}}'),(1366,939,'_wp_attached_file','2019/04/lotus-1205631_1920.jpg'),(1367,939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:30:\"2019/04/lotus-1205631_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lotus-1205631_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:\"lotus-1205631_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:30:\"lotus-1205631_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:31:\"lotus-1205631_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:30:\"lotus-1205631_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:{}}}'),(1368,940,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1369,940,'_elementor_edit_mode','builder'),(1370,940,'_elementor_template_type','post'),(1371,940,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":939,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/lotus-1205631_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\":\"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\":\"#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\":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\":\"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\":[]},\"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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1372,940,'_elementor_version','2.5.13'),(1373,940,'_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:{}}}'),(1376,941,'_wp_attached_file','2019/04/lotus-978659_1920.jpg'),(1377,941,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:29:\"2019/04/lotus-978659_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lotus-978659_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:\"lotus-978659_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:\"lotus-978659_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:\"lotus-978659_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:\"lotus-978659_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:{}}}'),(1421,951,'_wp_attached_file','2019/04/park-2625002_1280.jpg'),(1393,945,'_elementor_version','2.5.13'),(1394,945,'_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:{}}}'),(1391,945,'_elementor_template_type','post'),(1392,945,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":944,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3802424_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\":\"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\":\"#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\":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\":\"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\":[]},\"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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1389,945,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1390,945,'_elementor_edit_mode','builder'),(1387,944,'_wp_attached_file','2019/04/rose-3802424_1920.jpg'),(1388,944,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:29:\"2019/04/rose-3802424_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"rose-3802424_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-3802424_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:29:\"rose-3802424_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:30:\"rose-3802424_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:29:\"rose-3802424_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 D3200\";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:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1422,951,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:29:\"2019/04/park-2625002_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"park-2625002_1280-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:\"park-2625002_1280-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:\"park-2625002_1280-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:\"park-2625002_1280-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:29:\"park-2625002_1280-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:{}}}'),(1396,946,'_wp_attached_file','2019/04/landscape-967630_1920.jpg'),(1397,946,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:33:\"2019/04/landscape-967630_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"landscape-967630_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:33:\"landscape-967630_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:33:\"landscape-967630_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:34:\"landscape-967630_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:33:\"landscape-967630_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:{}}}'),(1409,948,'_elementor_version','2.5.13'),(1410,948,'_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:{}}}'),(1407,948,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (1408,948,'_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\":[]},\"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\":\"#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\":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\":\"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\":[]},\"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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1405,948,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1406,948,'_elementor_edit_mode','builder'),(1412,949,'_wp_attached_file','2019/04/white-birch-1757345_1920.jpg'),(1413,949,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1324;s:6:\"height\";i:1920;s:4:\"file\";s:36:\"2019/04/white-birch-1757345_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"white-birch-1757345_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:36:\"white-birch-1757345_1920-207x300.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"white-birch-1757345_1920-768x1114.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"white-birch-1757345_1920-706x1024.jpg\";s:5:\"width\";i:706;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:36:\"white-birch-1757345_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:{}}}'),(1493,975,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1414,950,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1415,950,'_elementor_edit_mode','builder'),(1416,950,'_elementor_template_type','post'),(1417,950,'_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\":[]},\"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\":\"#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\":949,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/white-birch-1757345_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\":[]},\"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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":872,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_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\":871,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-165819_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\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1418,950,'_elementor_version','2.5.13'),(1419,950,'_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:{}}}'),(1443,958,'_elementor_version','2.5.13'),(1444,958,'_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:{}}}'),(1433,955,'_wp_attached_file','2019/04/smoothies-3809509_1280.jpg'),(1439,958,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1440,958,'_elementor_edit_mode','builder'),(1441,958,'_elementor_template_type','post'),(1442,958,'_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\":[]},\"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\":\"#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\":949,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/white-birch-1757345_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\":[]},\"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\":951,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/park-2625002_1280.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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":955,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/smoothies-3809509_1280.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\":957,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mushrooms-2803566_1280.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\":956,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/fruit-basket-1841317_1280.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\":954,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/lemon-906141_1280.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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":791,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/pink-2254970_1920.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1429,953,'_wp_attached_file','2019/04/swan-644413_1920.jpg'),(1430,953,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:28:\"2019/04/swan-644413_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"swan-644413_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:\"swan-644413_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:\"swan-644413_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:\"swan-644413_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:\"swan-644413_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:{}}}'),(1431,954,'_wp_attached_file','2019/04/lemon-906141_1280.jpg'),(1432,954,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:29:\"2019/04/lemon-906141_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lemon-906141_1280-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:\"lemon-906141_1280-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:\"lemon-906141_1280-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:\"lemon-906141_1280-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:\"lemon-906141_1280-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:{}}}'),(1434,955,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:34:\"2019/04/smoothies-3809509_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"smoothies-3809509_1280-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:\"smoothies-3809509_1280-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:34:\"smoothies-3809509_1280-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:35:\"smoothies-3809509_1280-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:34:\"smoothies-3809509_1280-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:9:\"DMC-FZ150\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"16.5\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1435,956,'_wp_attached_file','2019/04/fruit-basket-1841317_1280.jpg'),(1436,956,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:37:\"2019/04/fruit-basket-1841317_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"fruit-basket-1841317_1280-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:\"fruit-basket-1841317_1280-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:\"fruit-basket-1841317_1280-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:\"fruit-basket-1841317_1280-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:\"fruit-basket-1841317_1280-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:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"98\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1437,957,'_wp_attached_file','2019/04/mushrooms-2803566_1280.jpg'),(1438,957,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:34:\"2019/04/mushrooms-2803566_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"mushrooms-2803566_1280-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:\"mushrooms-2803566_1280-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:34:\"mushrooms-2803566_1280-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:35:\"mushrooms-2803566_1280-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:34:\"mushrooms-2803566_1280-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:9:\"ILCE-7RM2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1445,959,'_wp_attached_file','2019/04/child-316510_1280.jpg'),(1446,959,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:847;s:6:\"height\";i:1280;s:4:\"file\";s:29:\"2019/04/child-316510_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"child-316510_1280-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:\"child-316510_1280-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"child-316510_1280-768x1161.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"child-316510_1280-678x1024.jpg\";s:5:\"width\";i:678;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:29:\"child-316510_1280-847x620.jpg\";s:5:\"width\";i:847;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:{}}}'),(1459,962,'_elementor_version','2.5.13'),(1460,962,'_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:{}}}'),(1455,962,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1456,962,'_elementor_edit_mode','builder'),(1457,962,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (1458,962,'_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\":[]},\"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\":\"#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\":949,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/white-birch-1757345_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\":[]},\"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\":951,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/park-2625002_1280.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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":955,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/smoothies-3809509_1280.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\":957,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mushrooms-2803566_1280.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\":956,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/fruit-basket-1841317_1280.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\":954,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/lemon-906141_1280.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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1453,961,'_wp_attached_file','2019/04/child-316511_1280.jpg'),(1454,961,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:847;s:4:\"file\";s:29:\"2019/04/child-316511_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"child-316511_1280-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:\"child-316511_1280-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:29:\"child-316511_1280-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:30:\"child-316511_1280-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:29:\"child-316511_1280-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:{}}}'),(1475,966,'_wp_attached_file','2019/04/flower-1307578_1920.jpg'),(1476,966,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:31:\"2019/04/flower-1307578_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"flower-1307578_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-1307578_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-1307578_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:32:\"flower-1307578_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:31:\"flower-1307578_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:{}}}'),(1497,975,'_elementor_version','2.5.13'),(1498,975,'_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:{}}}'),(1470,964,'_wp_attached_file','2019/04/smile-1491429_1280.png'),(1495,975,'_elementor_template_type','post'),(1496,975,'_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\":[]},\"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\":\"#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\":[]},\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":974,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/door-215349_1280.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\":973,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/boat-house-192990_1280.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\":972,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/holiday-house-177401_1280.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\":971,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bridge-2887353_1280.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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1494,975,'_elementor_edit_mode','builder'),(1471,964,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:900;s:4:\"file\";s:30:\"2019/04/smile-1491429_1280.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"smile-1491429_1280-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:30:\"smile-1491429_1280-300x211.png\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"smile-1491429_1280-768x540.png\";s:5:\"width\";i:768;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"smile-1491429_1280-1024x720.png\";s:5:\"width\";i:1024;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:30:\"smile-1491429_1280-930x620.png\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(1473,965,'_wp_attached_file','2019/04/wellness-955796_1920.jpg'),(1474,965,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:32:\"2019/04/wellness-955796_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"wellness-955796_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:32:\"wellness-955796_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:32:\"wellness-955796_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:33:\"wellness-955796_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:32:\"wellness-955796_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:{}}}'),(1477,967,'_wp_attached_file','2019/04/house-1353389_1920.jpg'),(1478,967,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:30:\"2019/04/house-1353389_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"house-1353389_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:\"house-1353389_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:30:\"house-1353389_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:31:\"house-1353389_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:30:\"house-1353389_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:{}}}'),(1479,968,'_wp_attached_file','2019/04/architecture-3357028_1920.jpg'),(1480,968,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1008;s:4:\"file\";s:37:\"2019/04/architecture-3357028_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"architecture-3357028_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:\"architecture-3357028_1920-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"architecture-3357028_1920-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"architecture-3357028_1920-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:37:\"architecture-3357028_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:{}}}'),(1481,969,'_wp_attached_file','2019/04/architecture-1048092_1920.jpg'),(1482,969,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:37:\"2019/04/architecture-1048092_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"architecture-1048092_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:\"architecture-1048092_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:37:\"architecture-1048092_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:38:\"architecture-1048092_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:37:\"architecture-1048092_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:{}}}'),(1485,971,'_wp_attached_file','2019/04/bridge-2887353_1280.jpg'),(1483,970,'_wp_attached_file','2019/04/reichstag-4148_1920.jpg'),(1484,970,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:31:\"2019/04/reichstag-4148_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"reichstag-4148_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:\"reichstag-4148_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:\"reichstag-4148_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:\"reichstag-4148_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:\"reichstag-4148_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:{}}}'),(1486,971,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:31:\"2019/04/bridge-2887353_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"bridge-2887353_1280-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:\"bridge-2887353_1280-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"bridge-2887353_1280-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"bridge-2887353_1280-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"bridge-2887353_1280-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:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"Canon EOS 700D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";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:{}}}'),(1487,972,'_wp_attached_file','2019/04/holiday-house-177401_1280.jpg'),(1488,972,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:37:\"2019/04/holiday-house-177401_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"holiday-house-177401_1280-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:\"holiday-house-177401_1280-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:37:\"holiday-house-177401_1280-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:38:\"holiday-house-177401_1280-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:37:\"holiday-house-177401_1280-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:{}}}'),(1491,974,'_wp_attached_file','2019/04/door-215349_1280.jpg'),(1489,973,'_wp_attached_file','2019/04/boat-house-192990_1280.jpg'),(1490,973,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:34:\"2019/04/boat-house-192990_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"boat-house-192990_1280-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:\"boat-house-192990_1280-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:34:\"boat-house-192990_1280-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:35:\"boat-house-192990_1280-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:34:\"boat-house-192990_1280-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:{}}}'),(1492,974,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:28:\"2019/04/door-215349_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"door-215349_1280-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:\"door-215349_1280-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:28:\"door-215349_1280-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:29:\"door-215349_1280-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:28:\"door-215349_1280-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:{}}}'),(1508,977,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1279;s:4:\"file\";s:30:\"2019/04/horses-945388_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"horses-945388_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:\"horses-945388_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:30:\"horses-945388_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:31:\"horses-945388_1920-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:30:\"horses-945388_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:{}}}'),(1515,979,'_elementor_version','2.5.13'),(1516,979,'_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:{}}}'),(1507,977,'_wp_attached_file','2019/04/horses-945388_1920.jpg'),(1513,979,'_elementor_template_type','post'),(1514,979,'_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\":[]},\"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\":\"#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\":[]},\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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\":974,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/door-215349_1280.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\":973,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/boat-house-192990_1280.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\":972,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/holiday-house-177401_1280.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\":978,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/castle-sponeck-2578523_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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1535,986,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1511,979,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1512,979,'_elementor_edit_mode','builder'),(1509,978,'_wp_attached_file','2019/04/castle-sponeck-2578523_1920.jpg'),(1510,978,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:39:\"2019/04/castle-sponeck-2578523_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"castle-sponeck-2578523_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:\"castle-sponeck-2578523_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:39:\"castle-sponeck-2578523_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:40:\"castle-sponeck-2578523_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:39:\"castle-sponeck-2578523_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:\"4.5\";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:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.000416666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1527,982,'_wp_attached_file','2019/04/chinese-675125_1920.jpg'),(1528,982,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:31:\"2019/04/chinese-675125_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"chinese-675125_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:\"chinese-675125_1920-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:31:\"chinese-675125_1920-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"chinese-675125_1920-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"chinese-675125_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:{}}}'),(1518,980,'_wp_attached_file','2019/04/chinese-675124_1920.jpg'),(1519,980,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:31:\"2019/04/chinese-675124_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"chinese-675124_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:\"chinese-675124_1920-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:31:\"chinese-675124_1920-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"chinese-675124_1920-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"chinese-675124_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:{}}}'),(1539,986,'_elementor_version','2.5.13'),(1540,986,'_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:{}}}'),(1537,986,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (1538,986,'_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\":[]},\"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\":\"#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\":[]},\"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\":884,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-4102612_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\":[]},\"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,\"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\":914,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/rose-3159554_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\":\"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},\"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\":\"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},\"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\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":0,\"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\":[]},\"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},\"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\":{\"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\":{\"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\":{\"unit\":\"em\",\"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\"}],\"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},\"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\":\"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},\"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\":\"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\",\"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\":[]},\"_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\"}],\"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,\"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\":\"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},\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"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_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\":\"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\":\"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\":\"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\":\"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(38,39,50,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\":\"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\":\"#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\":\"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\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160<br>\\nWichita, KS 67207\",\"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}],\"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}]'),(1536,986,'_elementor_edit_mode','builder'),(1531,984,'_wp_attached_file','2019/04/chinese-996990_1280.jpg'),(1529,983,'_wp_attached_file','2019/04/chinese-675123_1920.jpg'),(1530,983,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:31:\"2019/04/chinese-675123_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"chinese-675123_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:\"chinese-675123_1920-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:31:\"chinese-675123_1920-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"chinese-675123_1920-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"chinese-675123_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:{}}}'),(1532,984,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:4:\"file\";s:31:\"2019/04/chinese-996990_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"chinese-996990_1280-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:\"chinese-996990_1280-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:31:\"chinese-996990_1280-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"chinese-996990_1280-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"chinese-996990_1280-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:{}}}'),(1533,985,'_wp_attached_file','2019/04/chinese-676653_1920.jpg'),(1534,985,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:31:\"2019/04/chinese-676653_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"chinese-676653_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:\"chinese-676653_1920-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:31:\"chinese-676653_1920-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"chinese-676653_1920-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"chinese-676653_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:{}}}'),(1549,988,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(1546,987,'_elementor_version','2.5.13'),(1547,987,'_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:{}}}'),(1550,988,'_mail','a:8:{s:7:\"subject\";s:42:\"Evergreen Wellness Center \"[your-subject]\"\";s:6:\"sender\";s:64:\"Evergreen Wellness Center <wordpress@test.evergreenwellness.com>\";s:4:\"body\";s:198:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Evergreen Wellness Center (https://test.evergreenwellness.com)\";s:9:\"recipient\";s:27:\"admin@evergreenwellness.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(1551,988,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:42:\"Evergreen Wellness Center \"[your-subject]\"\";s:6:\"sender\";s:64:\"Evergreen Wellness Center <wordpress@test.evergreenwellness.com>\";s:4:\"body\";s:140:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Evergreen Wellness Center (https://test.evergreenwellness.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:37:\"Reply-To: admin@evergreenwellness.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(1552,988,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),(1553,988,'_additional_settings',NULL),(1554,988,'_locale','en_US'),(1573,991,'_elementor_version','2.5.14'),(1574,991,'_elementor_css','a:4:{s:4:\"time\";i:1555607320;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1577,992,'_elementor_edit_mode','builder'),(1578,992,'_elementor_template_type','post'),(1579,992,'_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}},\"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}]'),(1580,992,'_elementor_version','2.5.14'),(1581,992,'_elementor_css','a:4:{s:4:\"time\";i:1555627961;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1825,1037,'_elementor_version','2.5.14'),(1847,1041,'_wp_attached_file','2019/04/treatment.jpg'),(1593,994,'_elementor_version','2.5.14'),(1590,994,'_elementor_edit_mode','builder'),(1589,994,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1596,911,'_wp_trash_meta_status','publish'),(1597,911,'_wp_trash_meta_time','1555630414'),(1598,911,'_wp_desired_post_slug','contact'),(1599,785,'_wp_trash_meta_status','private'),(1600,785,'_wp_trash_meta_time','1555630429'),(1601,785,'_wp_desired_post_slug','wpforms-preview'),(1602,996,'_edit_lock','1555630552:1'),(1603,997,'_edit_lock','1555726027:1'),(1611,999,'_elementor_edit_mode','builder'),(1612,999,'_wp_page_template','default'),(1613,999,'_elementor_template_type','post'),(1614,999,'_elementor_version','2.5.13'),(1615,999,'_elementor_data','[{\"id\":\"d6b4c4f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8f9b704\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e7b56e\",\"elType\":\"widget\",\"settings\":{\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/wild-flowers-571940_1920.jpg\",\"id\":929},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"045ed62\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9108bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c17abea\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1b4e64\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"22a8834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"aa02a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction to Traditional Chinese Medicine <br>\\nHolistic Concept, Dynamic View and Natural Therapies\",\"align\":\"center\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb8ef4a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b00259\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"89e1a57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d13f7d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9654fd\",\"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\":\"31a1634\",\"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\":\"ff50e26\",\"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\":\"c3d81c1\",\"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\":\"b0e6f31\",\"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}]'),(1616,1000,'_elementor_edit_mode','builder'),(1617,1000,'_wp_page_template','default'),(1618,1000,'_elementor_template_type','post'),(1619,1000,'_elementor_version','2.5.14'),(1620,1000,'_elementor_data','[{\"id\":\"d6b4c4f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8f9b704\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e7b56e\",\"elType\":\"widget\",\"settings\":{\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/wild-flowers-571940_1920.jpg\",\"id\":929},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"045ed62\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9108bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c17abea\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1b4e64\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"22a8834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"aa02a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction to Traditional Chinese Medicine <br> <br>\\nHolistic Concept, Dynamic View and Natural Therapies\",\"align\":\"center\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb8ef4a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b00259\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"89e1a57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d13f7d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9654fd\",\"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\":\"31a1634\",\"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\":\"ff50e26\",\"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\":\"c3d81c1\",\"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\":\"b0e6f31\",\"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}]'),(1621,1001,'_edit_lock','1555810735:1'),(1623,1001,'_edit_last','1'),(1624,1001,'neve_meta_content_width','70'),(1625,1001,'_elementor_edit_mode','builder'),(1626,1001,'_wp_page_template','default'),(1629,1001,'_elementor_data','[{\"id\":\"4ae6470a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1006,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/road-1072823_1280.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\":\"2ed92e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8ad8f\",\"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\":\"7a5d346e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese 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\":\"11f6caac\",\"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\":\"78d1636c\",\"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\":\"2c42aefe\",\"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\":\"2a6b2919\",\"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\":\"5c8fe78c\",\"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\":\"857a747\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9817be7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c91563a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7abf7f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"613544f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcbf5ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af698cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dec341\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8d1cfc7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb83cb3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"dda2cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b6e36f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy.<\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"707a0d6\",\"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\":\"6fd13d4\",\"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\":\"fa612fc\",\"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\":\"3b433b5\",\"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\":\"cf7ca21\",\"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}]'),(1627,1001,'_elementor_template_type','post'),(1628,1001,'_elementor_version','2.5.14'),(1630,1003,'_elementor_edit_mode','builder'),(1631,1003,'_wp_page_template','default'),(1632,1003,'_elementor_template_type','post'),(1633,1003,'_elementor_version','2.5.14'),(1634,1003,'_elementor_data','[{\"id\":\"4ae6470a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"2ed92e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8ad8f\",\"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\":\"7a5d346e\",\"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\":\"11f6caac\",\"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\":\"78d1636c\",\"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\":\"2c42aefe\",\"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\":\"2a6b2919\",\"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\":\"5c8fe78c\",\"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}]'),(1635,1004,'_elementor_edit_mode','builder'),(1636,1004,'_wp_page_template','default'),(1637,1004,'_elementor_template_type','post'),(1638,1004,'_elementor_version','2.5.14'),(1639,1004,'_elementor_data','[{\"id\":\"4ae6470a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"2ed92e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8ad8f\",\"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\":\"7a5d346e\",\"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\":\"11f6caac\",\"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\":\"78d1636c\",\"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\":\"2c42aefe\",\"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\":\"2a6b2919\",\"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\":\"5c8fe78c\",\"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}]'),(1664,1009,'_elementor_edit_mode','builder'),(1665,1009,'_wp_page_template','default'),(1666,1009,'_elementor_template_type','post'),(1641,1001,'neve_meta_container','full-width'),(1642,1001,'neve_meta_sidebar','full-width'),(1814,1001,'neve_meta_disable_title','on'),(1650,1006,'_wp_attached_file','2019/04/road-1072823_1280.jpg'),(1651,1006,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:747;s:4:\"file\";s:29:\"2019/04/road-1072823_1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"road-1072823_1280-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:\"road-1072823_1280-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"road-1072823_1280-768x448.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:448;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"road-1072823_1280-1024x598.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:29:\"road-1072823_1280-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:{}}}'),(1667,1009,'_elementor_version','2.5.14'),(1668,1009,'_elementor_data','[{\"id\":\"4ae6470a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1006,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/road-1072823_1280.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\":\"2ed92e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8ad8f\",\"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\":\"7a5d346e\",\"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\":\"11f6caac\",\"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\":\"78d1636c\",\"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\":\"2c42aefe\",\"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\":\"2a6b2919\",\"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\":\"5c8fe78c\",\"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\":\"857a747\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9817be7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c91563a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7abf7f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"613544f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcbf5ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af698cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dec341\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8d1cfc7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb83cb3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dda2cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b6e36f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy.<\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a16fd0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5f6ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1658,1008,'_elementor_edit_mode','builder'),(1659,1008,'_wp_page_template','default'),(1660,1008,'_elementor_template_type','post'),(1661,1008,'_elementor_version','2.5.14'),(1662,1008,'_elementor_data','[{\"id\":\"52817f92\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":972,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/holiday-house-177401_1280.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\":\"7ec56c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58b22b01\",\"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\":\"5c622b34\",\"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\":\"389ffead\",\"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\":\"68806146\",\"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\":\"7c0fd725\",\"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\":\"69a174ae\",\"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\":\"2b5ee5e9\",\"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\":\"045ed62\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9108bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c17abea\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1b4e64\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"22a8834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"aa02a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction to Traditional Chinese Medicine <br> <br>\\nHolistic Concept, Dynamic View and Natural Therapies\",\"align\":\"center\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb8ef4a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b00259\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"89e1a57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d13f7d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9654fd\",\"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\":\"31a1634\",\"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\":\"ff50e26\",\"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\":\"c3d81c1\",\"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\":\"b0e6f31\",\"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}]'),(1663,1008,'_elementor_css','a:4:{s:4:\"time\";i:1555718057;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1669,1010,'_elementor_edit_mode','builder'),(1670,1010,'_wp_page_template','default'),(1671,1010,'_elementor_template_type','post'),(1672,1010,'_elementor_version','2.5.14'),(1673,1010,'_elementor_data','[{\"id\":\"4ae6470a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1006,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/road-1072823_1280.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\":\"2ed92e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8ad8f\",\"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\":\"7a5d346e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese 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\":\"11f6caac\",\"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\":\"78d1636c\",\"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\":\"2c42aefe\",\"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\":\"2a6b2919\",\"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\":\"5c8fe78c\",\"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\":\"857a747\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9817be7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c91563a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7abf7f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"613544f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcbf5ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af698cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dec341\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8d1cfc7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb83cb3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dda2cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b6e36f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy.<\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a16fd0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5f6ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1674,1011,'_elementor_edit_mode','builder'),(1675,1011,'_wp_page_template','default'),(1676,1011,'_elementor_template_type','post'),(1677,1011,'_elementor_version','2.5.14'),(1678,1011,'_elementor_data','[{\"id\":\"52817f92\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":972,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/holiday-house-177401_1280.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\":\"7ec56c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58b22b01\",\"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\":\"5c622b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction to Traditional Chinese Medicine <br> \\nHolistic Concept, Dynamic View and Natural Therapies\",\"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\":\"389ffead\",\"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\":\"68806146\",\"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\":\"7c0fd725\",\"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\":\"69a174ae\",\"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\":\"2b5ee5e9\",\"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\":\"045ed62\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9108bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c17abea\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1b4e64\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"22a8834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"aa02a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction to Traditional Chinese Medicine <br> <br>\\nHolistic Concept, Dynamic View and Natural Therapies\",\"align\":\"center\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb8ef4a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b00259\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"89e1a57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d13f7d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9654fd\",\"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\":\"31a1634\",\"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\":\"ff50e26\",\"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\":\"c3d81c1\",\"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\":\"b0e6f31\",\"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}]'),(1679,1012,'_elementor_edit_mode','builder'),(1680,1012,'_wp_page_template','default'),(1681,1012,'_elementor_template_type','post'),(1682,1012,'_elementor_version','2.5.14'),(1683,1012,'_elementor_data','[{\"id\":\"4ae6470a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1006,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/road-1072823_1280.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\":\"2ed92e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8ad8f\",\"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\":\"7a5d346e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese 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\":\"11f6caac\",\"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\":\"78d1636c\",\"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\":\"2c42aefe\",\"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\":\"2a6b2919\",\"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\":\"5c8fe78c\",\"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\":\"857a747\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9817be7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c91563a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7abf7f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"613544f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcbf5ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af698cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dec341\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8d1cfc7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb83cb3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dda2cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b6e36f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy.<\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"707a0d6\",\"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\":\"6fd13d4\",\"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\":\"fa612fc\",\"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\":\"3b433b5\",\"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\":\"cf7ca21\",\"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}]'),(1877,1047,'_elementor_edit_mode','builder'),(1878,1047,'_wp_page_template','default'),(1685,1013,'_edit_lock','1555810569:1'),(2364,1138,'_elementor_edit_mode','builder'),(2365,1138,'_wp_page_template','default'),(1687,1013,'_edit_last','1'),(1688,1013,'neve_meta_container','full-width'),(1689,1013,'neve_meta_sidebar','full-width'),(1690,1013,'neve_meta_disable_title','on'),(1691,1013,'neve_meta_content_width','70'),(1692,1013,'_elementor_edit_mode','builder'),(1693,1013,'_wp_page_template','default'),(1696,1013,'_elementor_data','[{\"id\":\"45b8b783\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":978,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/castle-sponeck-2578523_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\":\"689e44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"509559ce\",\"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\":\"6c9c3de1\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Efficacy of Acupuncture for Stroke Rehabilitation\",\"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\":\"6394f87b\",\"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\":\"45ec186d\",\"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\":\"19d10b45\",\"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\":\"5a7765b6\",\"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\":\"2787c22\",\"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\":\"9d81abe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3dee40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1289d97\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b30f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7a6149c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"caab668\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cc301b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4cd7d0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"db81fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Qizhi Gao, Wichita, KS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1140ce3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"8eb41bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a5fd3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e7cc54f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>OBJECTIVE:<\\/strong>\\u00a0The purpose of this study was to determine the effects in the functional recovery of post stroke patients receiving multidisciplinary western rehabilitation and patients receiving acupuncture with electrical stimulation in addition to multidisciplinary western rehabilitation.<\\/p><p><strong>BACKGROUND:<\\/strong>\\u00a0Stroke is third leading cause of death in the U.S. and a leading cause of serious long-term disability. About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled. Physical, cognitive and psychological disabilities are major medical and social problems. Very little research in this area has been done in the United States.<\\/p><p><strong>DESIGN\\/METHODS:<\\/strong>\\u00a0The study was a 2:1 randomized study. The study group received classical acupuncture with electrical stimulation for 60 minutes in addition to their standard daily physical, occupational, and speech therapy.<\\/p><p><strong>Intervention(s):<\\/strong>\\u00a0All patients received 3 hours of therapy (physical, occupational and speech therapy) Monday through Friday and 1\\u00bd hours of therapy on weekends<strong>.\\u00a0<\\/strong>Those in the study group also received acupuncture with electrical stimulation for 60 minutes on weekdays.<\\/p><p><strong>Main Outcome Measure(s):<\\/strong>\\u00a0Motor function, mobility, and daily life activities were assessed at the time of admission, every 7 days during length of stay and at the time of discharge using the Functional Independence Measure (FIM) scale.<\\/p><p><strong>RESULTS:<\\/strong>\\u00a0Patients in the control group and the study group did not differ significantly in age, gender or stroke side. There were statistically significant improvements in discharge placement and total FIM score change in the study group.<\\/p><p><strong>CONCLUSIONS\\/RELEVANCE:<\\/strong>\\u00a0Acupuncture is an effective adjunct to standard rehabilitation for post stroke patients as demonstrated by the 48 point FIM score change in the study group vs. the 20-point FIM score change in the control group and disposition of 90% of patients returned to their home in the study group vs. 33% in the control group.<\\/p><p>Above paper was presented at the American Academy of Neurology 59th Annual Meeting on May 2, 2007<\\/p><p>Supported by: Wesley Medical Research Institutes, 3306 E. Central, Wichita, KS 67208, 316-686-7172, Wesley Rehabilitation Hospital.<br \\/>Category \\u2013 Cerebrovascular Disease<br \\/>SubCategory \\u2013 Clinical Aspects<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccfa0b2\",\"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\":\"b9222fb\",\"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\":\"46b99c6\",\"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\":\"14a8c9d\",\"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\":\"c2e0cd2\",\"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}]'),(1694,1013,'_elementor_template_type','post'),(1695,1013,'_elementor_version','2.5.14'),(1697,1013,'_thumbnail_id','974'),(1698,1015,'_edit_lock','1555719974:1'),(1699,1016,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1700,1016,'_elementor_edit_mode','builder'),(1701,1016,'_elementor_template_type','post'),(1702,1016,'_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}]'),(1703,1016,'_elementor_version','2.5.14'),(1704,1016,'_elementor_css','a:4:{s:4:\"time\";i:1555630233;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1705,837,'_edit_last','1'),(1706,1017,'_elementor_edit_mode','builder'),(1707,1017,'_wp_page_template','default'),(1708,1017,'_elementor_template_type','post'),(1709,1017,'_elementor_version','2.5.14'),(1710,1017,'_elementor_data','[{\"id\":\"45b8b783\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":978,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/castle-sponeck-2578523_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\":\"689e44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"509559ce\",\"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\":\"6c9c3de1\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Efficacy of Acupuncture for Stroke Rehabilitation\",\"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\":\"6394f87b\",\"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\":\"45ec186d\",\"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\":\"19d10b45\",\"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\":\"5a7765b6\",\"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\":\"2787c22\",\"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\":\"9d81abe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3dee40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1289d97\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b30f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7a6149c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"caab668\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1140ce3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8eb41bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"07237b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Qizhi Gao, Wichita, KS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69a5fd3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e7cc54f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>OBJECTIVE:<\\/strong>\\u00a0The purpose of this study was to determine the effects in the functional recovery of post stroke patients receiving multidisciplinary western rehabilitation and patients receiving acupuncture with electrical stimulation in addition to multidisciplinary western rehabilitation.<\\/p><p><strong>BACKGROUND:<\\/strong>\\u00a0Stroke is third leading cause of death in the U.S. and a leading cause of serious long-term disability. About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled. Physical, cognitive and psychological disabilities are major medical and social problems. Very little research in this area has been done in the United States.<\\/p><p><strong>DESIGN\\/METHODS:<\\/strong>\\u00a0The study was a 2:1 randomized study. The study group received classical acupuncture with electrical stimulation for 60 minutes in addition to their standard daily physical, occupational, and speech therapy.<\\/p><p><strong>Intervention(s):<\\/strong>\\u00a0All patients received 3 hours of therapy (physical, occupational and speech therapy) Monday through Friday and 1\\u00bd hours of therapy on weekends<strong>.\\u00a0<\\/strong>Those in the study group also received acupuncture with electrical stimulation for 60 minutes on weekdays.<\\/p><p><strong>Main Outcome Measure(s):<\\/strong>\\u00a0Motor function, mobility, and daily life activities were assessed at the time of admission, every 7 days during length of stay and at the time of discharge using the Functional Independence Measure (FIM) scale.<\\/p><p><strong>RESULTS:<\\/strong>\\u00a0Patients in the control group and the study group did not differ significantly in age, gender or stroke side. There were statistically significant improvements in discharge placement and total FIM score change in the study group.<\\/p><p><strong>CONCLUSIONS\\/RELEVANCE:<\\/strong>\\u00a0Acupuncture is an effective adjunct to standard rehabilitation for post stroke patients as demonstrated by the 48 point FIM score change in the study group vs. the 20-point FIM score change in the control group and disposition of 90% of patients returned to their home in the study group vs. 33% in the control group.<\\/p><p>Above paper was presented at the American Academy of Neurology 59th Annual Meeting on May 2, 2007<\\/p><p>Supported by: Wesley Medical Research Institutes, 3306 E. Central, Wichita, KS 67208, 316-686-7172, Wesley Rehabilitation Hospital.<br \\/>Category \\u2013 Cerebrovascular Disease<br \\/>SubCategory \\u2013 Clinical Aspects<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a26ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a3b0ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1711,1017,'_thumbnail_id','974'),(1712,1018,'_elementor_edit_mode','builder'),(1713,1018,'_wp_page_template','default'),(1714,1018,'_elementor_template_type','post'),(1715,1018,'_elementor_version','2.5.14'),(1716,1018,'_elementor_data','[{\"id\":\"45b8b783\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":978,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/castle-sponeck-2578523_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\":\"689e44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"509559ce\",\"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\":\"6c9c3de1\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Efficacy of Acupuncture for Stroke Rehabilitation\",\"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\":\"6394f87b\",\"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\":\"45ec186d\",\"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\":\"19d10b45\",\"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\":\"5a7765b6\",\"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\":\"2787c22\",\"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\":\"9d81abe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3dee40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1289d97\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b30f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7a6149c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"caab668\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1140ce3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8eb41bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"07237b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Qizhi Gao, Wichita, KS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69a5fd3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e7cc54f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>OBJECTIVE:<\\/strong>\\u00a0The purpose of this study was to determine the effects in the functional recovery of post stroke patients receiving multidisciplinary western rehabilitation and patients receiving acupuncture with electrical stimulation in addition to multidisciplinary western rehabilitation.<\\/p><p><strong>BACKGROUND:<\\/strong>\\u00a0Stroke is third leading cause of death in the U.S. and a leading cause of serious long-term disability. About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled. Physical, cognitive and psychological disabilities are major medical and social problems. Very little research in this area has been done in the United States.<\\/p><p><strong>DESIGN\\/METHODS:<\\/strong>\\u00a0The study was a 2:1 randomized study. The study group received classical acupuncture with electrical stimulation for 60 minutes in addition to their standard daily physical, occupational, and speech therapy.<\\/p><p><strong>Intervention(s):<\\/strong>\\u00a0All patients received 3 hours of therapy (physical, occupational and speech therapy) Monday through Friday and 1\\u00bd hours of therapy on weekends<strong>.\\u00a0<\\/strong>Those in the study group also received acupuncture with electrical stimulation for 60 minutes on weekdays.<\\/p><p><strong>Main Outcome Measure(s):<\\/strong>\\u00a0Motor function, mobility, and daily life activities were assessed at the time of admission, every 7 days during length of stay and at the time of discharge using the Functional Independence Measure (FIM) scale.<\\/p><p><strong>RESULTS:<\\/strong>\\u00a0Patients in the control group and the study group did not differ significantly in age, gender or stroke side. There were statistically significant improvements in discharge placement and total FIM score change in the study group.<\\/p><p><strong>CONCLUSIONS\\/RELEVANCE:<\\/strong>\\u00a0Acupuncture is an effective adjunct to standard rehabilitation for post stroke patients as demonstrated by the 48 point FIM score change in the study group vs. the 20-point FIM score change in the control group and disposition of 90% of patients returned to their home in the study group vs. 33% in the control group.<\\/p><p>Above paper was presented at the American Academy of Neurology 59th Annual Meeting on May 2, 2007<\\/p><p>Supported by: Wesley Medical Research Institutes, 3306 E. Central, Wichita, KS 67208, 316-686-7172, Wesley Rehabilitation Hospital.<br \\/>Category \\u2013 Cerebrovascular Disease<br \\/>SubCategory \\u2013 Clinical Aspects<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccfa0b2\",\"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\":\"b9222fb\",\"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\":\"46b99c6\",\"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\":\"14a8c9d\",\"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\":\"c2e0cd2\",\"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}]'),(1717,1018,'_thumbnail_id','974'),(1718,1019,'_edit_lock','1555811688:1'),(1903,1051,'_elementor_edit_mode','builder'),(1904,1051,'_wp_page_template','default'),(1720,1019,'_edit_last','1'),(1721,1019,'neve_meta_container','full-width'),(1722,1019,'neve_meta_sidebar','full-width'),(1723,1019,'neve_meta_disable_title','on'),(1724,1019,'neve_meta_content_width','70'),(1725,1019,'_elementor_edit_mode','builder'),(1726,1019,'_wp_page_template','default'),(1729,1019,'_elementor_data','[{\"id\":\"5dad9ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":977,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/horses-945388_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\":\"487844c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6713f25a\",\"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\":\"41cb3358\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nTraditional Chinese Medicine <br> and Stroke Rehabilitation\",\"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\":\"6c4b1056\",\"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\":\"3a0e353b\",\"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\":\"24bc5464\",\"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\":\"72cebd46\",\"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\":\"6f466c08\",\"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\":\"2fd016b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"944e086\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43116a8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ae6346\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04d6777\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a88e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nTraditional Chinese Medicine and Stroke Rehabilitation\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8b0d7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07327e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"227b269\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2fff23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"41b1ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ec7181c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In addition being the third leading cause of death in the U.S., strokes are a leading cause of serious long-term disability.\\u00a0 About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled.\\u00a0 That number is expected to surpass the 1 million mark by 2050.\\u00a0 Significant physical, cognitive and psychological disabilities create major medical and social problems.\\u00a0<\\/p><p>In the current medical climate, the type and amount of stroke rehabilitation a patient receives is many times dictated by insurance plan offerings, yet medical practitioners are unanimous in agreement that a comprehensive rehabilitative therapy program\\u00a0 provides the best chance of meaningful recovery.\\u00a0 Of the 72 million Americans that have experienced serious injury, stroke or other disabling disease more that 60 percent never receive proper rehabilitation.\\u00a0 Yet, the earlier rehabilitation begins the more likely the patient is to regain the ability to function and return to a productive satisfying life.<\\/p><p>A stroke or cerebral vascular accidents (CVA) occur when a blood clot blocks a blood vessel or artery, or when a blood vessel breaks, interrupting blood flow to an area of the brain.\\u00a0 When a patient survives a stroke, all but a small percentage of them suffer from limitations in functional activities and subsequently do not become self-sufficient. We called it post-stroke syndrome.<\\/p><p>According to National Stroke Association, there are nearly 4 million people in the United States who have survived a stroke and are living with the after-effects. These numbers do not reflect the scope of the problem and do not count the millions of husbands, wives and children who live with and care for stroke survivors and who are, because of their own altered lifestyle, greatly affected by stroke.\\u00a0 In the United States, Post-stroke patients normally receive physical therapy<em>\\u00a0(PT)<\\/em>, Occupational therapy\\u00a0<em>(OT)<\\/em>\\u00a0and\\/or Speech language pathology for their rehabilitation.<\\/p><p>From Traditional Chinese Medicine (TCM) aspect, stroke caused by imbalance of\\u00a0<em>Yin\\u00a0<\\/em>and<em>\\u00a0Yang\\u00a0<\\/em>of inner organ and imbalance\\u00a0<em>Qi<\\/em>\\u00a0and\\u00a0<em>blood.<\\/em>\\u00a0The classification of\\u00a0<em>Synopsis of the Golden Chamber,\\u00a0<\\/em>wrote by Zhang Zhongjing, a famous TCM doctor in the Eastern Han dynasty (300 AD), had described the symptoms and treatment method. Now many studies have been done for post-stroke patients to speed rehabilitation using TCM therapy such as Acupuncture and Moxibustion, Herbs, Tuina Anmo (Chinese Massage) and Qigong (Energy Healing). Following is a further explain these therapies and some results of studies that have been performed to date.<\\/p><p><strong><em>Acupuncture and Moxibustion Therapy<\\/em><\\/strong><\\/p><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>The study done by Chen YM, et al shows that for 108 cases of hemiplegia or paralysis of on eside of the body caused by stroke, early treatment (first three weeks) with acupuncture produces better result than the treatment initiated three weeks after stroke. The improvement rate is from 90.9% down to 71.4%.<\\/p><p>Another study done by Kjendahl A, et al, Sunnaas Rehabilitation Hospital, Nesoddtangen, Norway shows that the acupuncture group improved significantly more than the controls, both during the treatment period of six weeks, and even more during the following year, both according to MAS, ADL, NHP and the social situation.<\\/p><p><strong><em>Herbal Therapy<\\/em><\\/strong><\\/p><p>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China.<\\/p><p>The study done by Lin Faching, et al, Department of Neurology, Renji Hospital, Shanghai, China described: Of the 78 cased for which clinical signs were evaluated: vertigo was found in 43 cases (55.12%), nystagmus (rapid rhythmic repetitious involuntary (unwilled) horizontal, vertical or rotary eye movements) in 34 cases (43.59%), mental disorders ( including confusion, depression, disorientation, conscious blur and insomnia) in 14 cases (17.94%), motor paralysis in 28 cases (35.89 %), ataxia (Wobbliness. Lack of coordination and unsteadiness due to the brain\\u2019s failure to regulate the body\\u2019s posture and regulate the strength and direction of limb movements) in 18 cases (23.07%), sensory disorders in 12 cases (15.38%), and dyslalia (an articulatory disorder in which a patient does not pronounce the sounds clearly or they replace one sound for another) in 7 cases (8.97%). When the herb formulas were used in treatment, of the entire case sample, 97.44% reported an improvement in some symptoms and a satisfactory result was judged to be 74.36%. No obvious side effects were noted as a result of treatment when using the herbs.<\\/p><p><strong><em>Tuina Anmo (Chinese Massage) Therapy<\\/em><\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>The article wrote by Li Yangao, et al, The Bethune International Peace Hospital, China, mentioned that 44 patients had suffered from hemiplegia or paralysis of one side of the body due to stroke. The average age of patients was 54. The disease course had lasted from one month to three years, with an average of 105 days. They were treated by Tuina\\u00a0 Anmo therapy from 10 to 60 times, with an average of 24 times. The result is: 18 out of 44 cases improved obviously, 18 improved, 8 cases failed, the effective rate was 81.82%.<\\/p><p><strong><em>Qigong (Energy Healing) Therapy<\\/em><\\/strong><\\/p><p>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breath, exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose.<\\/p><p>According to\\u00a0<em>147 cases of hemiplegia due to cerebrovascular accident treated by Qigong<\\/em>, Zhang Xia, presented on the Fourth World Conference on Medical Qigong, the total effective rate is 93.2% in 12 weeks treatment period.<\\/p><p><strong><em>Integrative Therapy of Traditional Chinese and Western Medicine<\\/em><\\/strong><\\/p><p>It includes Acupuncture and Moxibustion Therapy, Herbal Therapy, Tuina Anmo (Chinese Massage) Therapy, Qigong Therapy, Physical Therapy, Occupational Therapy and speech training.<\\/p><p>Wang Shaoqin et al, Beijing Rehabilitation Hospital, China, report their study on 100 cases of post-stroke patients treated by an integrated therapy of Traditional Chinese and Western medicine. After the 3 months treatment, the total effective rate was 83%. For post-cerebral hemorrhage cases the total effective rate was 89.29%, for post-cerebral infarction was 80.56%. The overall effective rate of 67 cases under age 60 was 91.04, of over age 60 was 66.67%. There was extremely significant difference between these two age groups. The total effective rate of 50 cases whose treatment started within 6 months after stroke was 94%; the effective rate of 50 cases whose treatment started within 6 months later stroke was 72%. There was extremely significant difference between these two age groups, too.<\\/p><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for stroke and other conditions is provided at the Evergreen Wellness Center.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0c254e\",\"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\":\"600d034\",\"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\":\"087f197\",\"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\":\"cae6614\",\"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\":\"cf5b9e1\",\"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}]'),(1727,1019,'_elementor_template_type','post'),(1728,1019,'_elementor_version','2.5.14'),(1730,1021,'_elementor_edit_mode','builder'),(1731,1021,'_wp_page_template','default'),(1732,1021,'_elementor_template_type','post'),(1733,1021,'_elementor_version','2.5.14'),(1734,1021,'_elementor_data','[{\"id\":\"5dad9ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"487844c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6713f25a\",\"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\":\"41cb3358\",\"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\":\"6c4b1056\",\"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\":\"3a0e353b\",\"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\":\"24bc5464\",\"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\":\"72cebd46\",\"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\":\"6f466c08\",\"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}]'),(1735,1022,'_elementor_edit_mode','builder'),(1736,1022,'_wp_page_template','default'),(1737,1022,'_elementor_template_type','post'),(1738,1022,'_elementor_version','2.5.14'),(1739,1022,'_elementor_data','[{\"id\":\"5dad9ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":977,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/horses-945388_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\":\"487844c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6713f25a\",\"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\":\"41cb3358\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nTraditional Chinese Medicine <br> and Stroke Rehabilitation\",\"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\":\"6c4b1056\",\"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\":\"3a0e353b\",\"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\":\"24bc5464\",\"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\":\"72cebd46\",\"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\":\"6f466c08\",\"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\":\"2fd016b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"944e086\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43116a8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ae6346\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04d6777\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a88e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nTraditional Chinese Medicine and Stroke Rehabilitation\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8b0d7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07327e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"227b269\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2fff23\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"41b1ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ec7181c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In addition being the third leading cause of death in the U.S., strokes are a leading cause of serious long-term disability.\\u00a0 About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled.\\u00a0 That number is expected to surpass the 1 million mark by 2050.\\u00a0 Significant physical, cognitive and psychological disabilities create major medical and social problems.\\u00a0<\\/p><p>In the current medical climate, the type and amount of stroke rehabilitation a patient receives is many times dictated by insurance plan offerings, yet medical practitioners are unanimous in agreement that a comprehensive rehabilitative therapy program\\u00a0 provides the best chance of meaningful recovery.\\u00a0 Of the 72 million Americans that have experienced serious injury, stroke or other disabling disease more that 60 percent never receive proper rehabilitation.\\u00a0 Yet, the earlier rehabilitation begins the more likely the patient is to regain the ability to function and return to a productive satisfying life.<\\/p><p>A stroke or cerebral vascular accidents (CVA) occur when a blood clot blocks a blood vessel or artery, or when a blood vessel breaks, interrupting blood flow to an area of the brain.\\u00a0 When a patient survives a stroke, all but a small percentage of them suffer from limitations in functional activities and subsequently do not become self-sufficient. We called it post-stroke syndrome.<\\/p><p>According to National Stroke Association, there are nearly 4 million people in the United States who have survived a stroke and are living with the after-effects. These numbers do not reflect the scope of the problem and do not count the millions of husbands, wives and children who live with and care for stroke survivors and who are, because of their own altered lifestyle, greatly affected by stroke.\\u00a0 In the United States, Post-stroke patients normally receive physical therapy<em>\\u00a0(PT)<\\/em>, Occupational therapy\\u00a0<em>(OT)<\\/em>\\u00a0and\\/or Speech language pathology for their rehabilitation.<\\/p><p>From Traditional Chinese Medicine (TCM) aspect, stroke caused by imbalance of\\u00a0<em>Yin\\u00a0<\\/em>and<em>\\u00a0Yang\\u00a0<\\/em>of inner organ and imbalance\\u00a0<em>Qi<\\/em>\\u00a0and\\u00a0<em>blood.<\\/em>\\u00a0The classification of\\u00a0<em>Synopsis of the Golden Chamber,\\u00a0<\\/em>wrote by Zhang Zhongjing, a famous TCM doctor in the Eastern Han dynasty (300 AD), had described the symptoms and treatment method. Now many studies have been done for post-stroke patients to speed rehabilitation using TCM therapy such as Acupuncture and Moxibustion, Herbs, Tuina Anmo (Chinese Massage) and Qigong (Energy Healing). Following is a further explain these therapies and some results of studies that have been performed to date.<\\/p><p><strong><em>Acupuncture and Moxibustion Therapy<\\/em><\\/strong><\\/p><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>The study done by Chen YM, et al shows that for 108 cases of hemiplegia or paralysis of on eside of the body caused by stroke, early treatment (first three weeks) with acupuncture produces better result than the treatment initiated three weeks after stroke. The improvement rate is from 90.9% down to 71.4%.<\\/p><p>Another study done by Kjendahl A, et al, Sunnaas Rehabilitation Hospital, Nesoddtangen, Norway shows that the acupuncture group improved significantly more than the controls, both during the treatment period of six weeks, and even more during the following year, both according to MAS, ADL, NHP and the social situation.<\\/p><p><strong><em>Herbal Therapy<\\/em><\\/strong><\\/p><p>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China.<\\/p><p>The study done by Lin Faching, et al, Department of Neurology, Renji Hospital, Shanghai, China described: Of the 78 cased for which clinical signs were evaluated: vertigo was found in 43 cases (55.12%), nystagmus (rapid rhythmic repetitious involuntary (unwilled) horizontal, vertical or rotary eye movements) in 34 cases (43.59%), mental disorders ( including confusion, depression, disorientation, conscious blur and insomnia) in 14 cases (17.94%), motor paralysis in 28 cases (35.89 %), ataxia (Wobbliness. Lack of coordination and unsteadiness due to the brain\\u2019s failure to regulate the body\\u2019s posture and regulate the strength and direction of limb movements) in 18 cases (23.07%), sensory disorders in 12 cases (15.38%), and dyslalia (an articulatory disorder in which a patient does not pronounce the sounds clearly or they replace one sound for another) in 7 cases (8.97%). When the herb formulas were used in treatment, of the entire case sample, 97.44% reported an improvement in some symptoms and a satisfactory result was judged to be 74.36%. No obvious side effects were noted as a result of treatment when using the herbs.<\\/p><p><strong><em>Tuina Anmo (Chinese Massage) Therapy<\\/em><\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>The article wrote by Li Yangao, et al, The Bethune International Peace Hospital, China, mentioned that 44 patients had suffered from hemiplegia or paralysis of one side of the body due to stroke. The average age of patients was 54. The disease course had lasted from one month to three years, with an average of 105 days. They were treated by Tuina\\u00a0 Anmo therapy from 10 to 60 times, with an average of 24 times. The result is: 18 out of 44 cases improved obviously, 18 improved, 8 cases failed, the effective rate was 81.82%.<\\/p><p><strong><em>Qigong (Energy Healing) Therapy<\\/em><\\/strong><\\/p><p>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breath, exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose.<\\/p><p>According to\\u00a0<em>147 cases of hemiplegia due to cerebrovascular accident treated by Qigong<\\/em>, Zhang Xia, presented on the Fourth World Conference on Medical Qigong, the total effective rate is 93.2% in 12 weeks treatment period.<\\/p><p><strong><em>Integrative Therapy of Traditional Chinese and Western Medicine<\\/em><\\/strong><\\/p><p>It includes Acupuncture and Moxibustion Therapy, Herbal Therapy, Tuina Anmo (Chinese Massage) Therapy, Qigong Therapy, Physical Therapy, Occupational Therapy and speech training.<\\/p><p>Wang Shaoqin et al, Beijing Rehabilitation Hospital, China, report their study on 100 cases of post-stroke patients treated by an integrated therapy of Traditional Chinese and Western medicine. After the 3 months treatment, the total effective rate was 83%. For post-cerebral hemorrhage cases the total effective rate was 89.29%, for post-cerebral infarction was 80.56%. The overall effective rate of 67 cases under age 60 was 91.04, of over age 60 was 66.67%. There was extremely significant difference between these two age groups. The total effective rate of 50 cases whose treatment started within 6 months after stroke was 94%; the effective rate of 50 cases whose treatment started within 6 months later stroke was 72%. There was extremely significant difference between these two age groups, too.<\\/p><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for stroke and other conditions is provided at the Evergreen Wellness Center.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0c254e\",\"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\":\"600d034\",\"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\":\"087f197\",\"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\":\"cae6614\",\"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\":\"cf5b9e1\",\"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}]'),(1740,1023,'_edit_lock','1555812035:1'),(1896,1050,'_elementor_edit_mode','builder'),(1897,1050,'_wp_page_template','default'),(1742,1023,'_edit_last','1'),(1743,1023,'neve_meta_container','full-width'),(1744,1023,'neve_meta_sidebar','full-width'),(1745,1023,'neve_meta_disable_title','on'),(1746,1023,'neve_meta_content_width','70'),(1747,1023,'_elementor_edit_mode','builder'),(1748,1023,'_wp_page_template','default'),(1751,1023,'_elementor_data','[{\"id\":\"6bbedd7e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":971,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bridge-2887353_1280.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\":\"420ade09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b266846\",\"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\":\"2682cc65\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\nTCM and Heart Diseases \",\"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\":\"7fedd322\",\"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\":\"61b5b243\",\"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\":\"4f9fbfb1\",\"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\":\"51fbb17c\",\"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\":\"469f5cfa\",\"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\":\"e16b1c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"98327f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bf989fa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5608611\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38c4f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"73e756f\",\"elType\":\"widget\",\"settings\":{\"title\":\"TCM and Heart Diseases <br>\\nChinese Medicine (TCM) Diagnosis of Heart Disease\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"647701d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dd16976\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6a2e734\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"671760e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"7428659\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"31a1105\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<section class=\\\"elementor-element elementor-element-260f1af elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"260f1af\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-259fc60 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"259fc60\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-1c13388 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1c13388\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).<\\/p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and\\/or Blood Stasis.<br \\/>Kidney and Heart control whole body Yang<br \\/>Right foot edema \\u2013 Yang Qi disorders<br \\/>Left foot edema \\u2013 Yin disorders<\\/p><p>Chinese Medicine Heart Pain Patterns<\\/p><p><strong>Heart Yang Deficiency<\\/strong><\\/p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.<\\/p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.<\\/p><p><strong>Heart Qi Deficiency<\\/strong><\\/p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.<\\/p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.<\\/p><p><strong>Heart Qi and Blood Deficiency<\\/strong><\\/p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it\\u2019s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.<\\/p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.<\\/p><p><strong>Heart and Kidney Yin Deficiency<\\/strong><\\/p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.<\\/p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red\\/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.<\\/p><p><strong>Heart Blood Stagnation<\\/strong><\\/p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness\\u2019s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.<\\/p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.<\\/p><p><strong>Phlegm Fluid Stagnation<\\/strong><\\/p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.<\\/p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.<\\/p><p><strong>Liver Qi Stagnation<\\/strong><\\/p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.<\\/p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness\\/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-1b3628b elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"1b3628b\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-68db7b9 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"68db7b9\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-c0c4be1 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"c0c4be1\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-97dca47 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"97dca47\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-35da1ec elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"35da1ec\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-737edfa elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"737edfa\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-2f5dbcc elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"2f5dbcc\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-537c367 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"537c367\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-96b7a71 elementor-widget elementor-widget-shortcode\\\" data-id=\\\"96b7a71\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"shortcode.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-shortcode\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9c1e76\",\"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\":\"7500b91\",\"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\":\"dd58420\",\"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\":\"daab0ee\",\"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\":\"b445f76\",\"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}]'),(1749,1023,'_elementor_template_type','post'),(1750,1023,'_elementor_version','2.5.14'),(1752,1025,'_elementor_edit_mode','builder'),(1753,1025,'_wp_page_template','default'),(1754,1025,'_elementor_template_type','post'),(1755,1025,'_elementor_version','2.5.14'),(1756,1025,'_elementor_data','[{\"id\":\"6bbedd7e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"420ade09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b266846\",\"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\":\"2682cc65\",\"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\":\"7fedd322\",\"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\":\"61b5b243\",\"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\":\"4f9fbfb1\",\"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\":\"51fbb17c\",\"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\":\"469f5cfa\",\"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\":\"e16b1c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"98327f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bf989fa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5608611\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38c4f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"73e756f\",\"elType\":\"widget\",\"settings\":{\"title\":\"TCM and Heart Diseases <br>\\nChinese Medicine (TCM) Diagnosis of Heart Disease\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"647701d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dd16976\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6a2e734\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"671760e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7428659\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"31a1105\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<section class=\\\"elementor-element elementor-element-260f1af elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"260f1af\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-259fc60 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"259fc60\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-1c13388 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1c13388\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).<\\/p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and\\/or Blood Stasis.<br \\/>Kidney and Heart control whole body Yang<br \\/>Right foot edema \\u2013 Yang Qi disorders<br \\/>Left foot edema \\u2013 Yin disorders<\\/p><p>Chinese Medicine Heart Pain Patterns<\\/p><p><strong>Heart Yang Deficiency<\\/strong><\\/p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.<\\/p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.<\\/p><p><strong>Heart Qi Deficiency<\\/strong><\\/p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.<\\/p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.<\\/p><p><strong>Heart Qi and Blood Deficiency<\\/strong><\\/p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it\\u2019s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.<\\/p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.<\\/p><p><strong>Heart and Kidney Yin Deficiency<\\/strong><\\/p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.<\\/p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red\\/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.<\\/p><p><strong>Heart Blood Stagnation<\\/strong><\\/p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness\\u2019s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.<\\/p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.<\\/p><p><strong>Phlegm Fluid Stagnation<\\/strong><\\/p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.<\\/p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.<\\/p><p><strong>Liver Qi Stagnation<\\/strong><\\/p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.<\\/p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness\\/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-1b3628b elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"1b3628b\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-68db7b9 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"68db7b9\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-c0c4be1 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"c0c4be1\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-97dca47 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"97dca47\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-35da1ec elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"35da1ec\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-737edfa elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"737edfa\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-2f5dbcc elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"2f5dbcc\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-537c367 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"537c367\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-96b7a71 elementor-widget elementor-widget-shortcode\\\" data-id=\\\"96b7a71\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"shortcode.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-shortcode\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9c1e76\",\"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\":\"7500b91\",\"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\":\"dd58420\",\"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\":\"daab0ee\",\"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\":\"b445f76\",\"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}]'),(1757,1026,'_elementor_edit_mode','builder'),(1758,1026,'_wp_page_template','default'),(1759,1026,'_elementor_template_type','post'),(1760,1026,'_elementor_version','2.5.14'),(1761,1026,'_elementor_data','[{\"id\":\"6bbedd7e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"420ade09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b266846\",\"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\":\"2682cc65\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\nTCM and Heart Diseases \",\"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\":\"7fedd322\",\"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\":\"61b5b243\",\"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\":\"4f9fbfb1\",\"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\":\"51fbb17c\",\"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\":\"469f5cfa\",\"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\":\"e16b1c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"98327f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bf989fa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5608611\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38c4f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"73e756f\",\"elType\":\"widget\",\"settings\":{\"title\":\"TCM and Heart Diseases <br>\\nChinese Medicine (TCM) Diagnosis of Heart Disease\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"647701d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dd16976\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6a2e734\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"671760e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7428659\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"31a1105\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<section class=\\\"elementor-element elementor-element-260f1af elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"260f1af\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-259fc60 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"259fc60\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-1c13388 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1c13388\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).<\\/p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and\\/or Blood Stasis.<br \\/>Kidney and Heart control whole body Yang<br \\/>Right foot edema \\u2013 Yang Qi disorders<br \\/>Left foot edema \\u2013 Yin disorders<\\/p><p>Chinese Medicine Heart Pain Patterns<\\/p><p><strong>Heart Yang Deficiency<\\/strong><\\/p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.<\\/p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.<\\/p><p><strong>Heart Qi Deficiency<\\/strong><\\/p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.<\\/p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.<\\/p><p><strong>Heart Qi and Blood Deficiency<\\/strong><\\/p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it\\u2019s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.<\\/p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.<\\/p><p><strong>Heart and Kidney Yin Deficiency<\\/strong><\\/p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.<\\/p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red\\/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.<\\/p><p><strong>Heart Blood Stagnation<\\/strong><\\/p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness\\u2019s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.<\\/p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.<\\/p><p><strong>Phlegm Fluid Stagnation<\\/strong><\\/p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.<\\/p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.<\\/p><p><strong>Liver Qi Stagnation<\\/strong><\\/p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.<\\/p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness\\/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-1b3628b elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"1b3628b\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-68db7b9 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"68db7b9\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-c0c4be1 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"c0c4be1\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-97dca47 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"97dca47\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-35da1ec elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"35da1ec\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-737edfa elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"737edfa\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-2f5dbcc elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"2f5dbcc\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-537c367 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"537c367\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-96b7a71 elementor-widget elementor-widget-shortcode\\\" data-id=\\\"96b7a71\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"shortcode.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-shortcode\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9c1e76\",\"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\":\"7500b91\",\"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\":\"dd58420\",\"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\":\"daab0ee\",\"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\":\"b445f76\",\"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}]'),(1762,1027,'_edit_lock','1555810175:1'),(1883,1048,'_elementor_edit_mode','builder'),(1884,1048,'_wp_page_template','default'),(1764,1027,'_edit_last','1'),(1765,1027,'neve_meta_container','full-width'),(1766,1027,'neve_meta_sidebar','full-width'),(1767,1027,'neve_meta_disable_title','on'),(1768,1027,'neve_meta_content_width','70'),(1769,1027,'_elementor_edit_mode','builder'),(1770,1027,'_wp_page_template','default'),(1773,1027,'_elementor_data','[{\"id\":\"26de0d99\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1029,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/baby-2032303_1920-1024x683.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\":\"6b1f8cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"441fae64\",\"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\":\"56d4b6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Traditional Chinese Medicine and Infertility\\n\",\"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\":\"14360630\",\"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\":\"98b1f50\",\"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\":\"692620ea\",\"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\":\"760a7b87\",\"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\":\"2212e09e\",\"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\":\"2e9f2ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d89e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7eab3f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"959db52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d52f05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"04e4856\",\"elType\":\"widget\",\"settings\":{\"title\":\"Traditional Chinese Medicine and Infertility\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e57267\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e77972b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"face210\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8581d5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"2a74470\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9b9c56c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.\\u00a0 Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.\\u00a0 The body is an organic whole and its functions are interconnected.\\u00a0 The meridian system, which allows vital energy to flow, links the body as a whole.\\u00a0 The TCM practitioner will treat patients with therapies from four main categories:\\u00a0 Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing).\\u00a0<\\/p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.\\u00a0 Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques.\\u00a0<\\/p><p><strong>Treating Infertility<\\/strong><\\/p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.\\u00a0 Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.\\u00a0 For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.<\\/p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.\\u00a0 This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.\\u00a0 Additionally, most contemporary medical treatments involve the use of numerous drugs.\\u00a0 The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.<\\/p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple\\u2019s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).\\u00a0 In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.\\u00a0 One of the groups received TCM treatments before and after implantation.\\u00a0 The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.<\\/p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:<\\/p><ul><li>TCM sees a personal as an integral mind\\/body organism and seeks to stimulate the body\\u2019s natural healing potential by treating root causes.<\\/li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.<\\/li><li>Traditional Chinese Medicine may be sued to strengthen and balance one\\u2019s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient\\u00a0 derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.\\u00a0 Pregnancy becomes easier to achieve and postpartum recuperation happens faster.\\u00a0<\\/li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.<\\/li><\\/ul><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments<\\/strong><\\/p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body\\u2019s systems regardless of age.\\u00a0 For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle.\\u00a0<\\/li><\\/ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body\\u2019s systems.<\\/p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40\\u2019s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.<\\/li><\\/ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.\\u00a0 There is not short cut to conception but in many cases, \\u201cturning back the clock\\u201d is possible.<\\/p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.\\u00a0 Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.\\u00a0 The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.<\\/li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.<\\/li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.\\u00a0 The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.<\\/li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.\\u00a0 Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.\\u00a0 However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.<\\/li><\\/ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for infertility and other conditions is provided at the Evergreen Wellness Center.\\u00a0 You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17808b2\",\"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\":\"adc0dc2\",\"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\":\"2905872\",\"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\":\"19bac93\",\"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\":\"8d38437\",\"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}]'),(1771,1027,'_elementor_template_type','post'),(1772,1027,'_elementor_version','2.5.14'),(1774,1029,'_wp_attached_file','2019/04/baby-2032303_1920-1024x683.jpg'),(1775,1029,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:38:\"2019/04/baby-2032303_1920-1024x683.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"baby-2032303_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:38:\"baby-2032303_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:38:\"baby-2032303_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:39:\"baby-2032303_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:38:\"baby-2032303_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:{}}}'),(1776,1027,'_thumbnail_id','1029'),(1777,1030,'_elementor_edit_mode','builder'),(1778,1030,'_wp_page_template','default'),(1779,1030,'_elementor_template_type','post'),(1780,1030,'_elementor_version','2.5.14'),(1781,1030,'_elementor_data','[{\"id\":\"26de0d99\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1029,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/baby-2032303_1920-1024x683.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\":\"6b1f8cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"441fae64\",\"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\":\"56d4b6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Traditional Chinese Medicine and Infertility\\n\",\"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\":\"14360630\",\"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\":\"98b1f50\",\"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\":\"692620ea\",\"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\":\"760a7b87\",\"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\":\"2212e09e\",\"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\":\"2e9f2ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d89e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7eab3f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"959db52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d52f05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"04e4856\",\"elType\":\"widget\",\"settings\":{\"title\":\"Traditional Chinese Medicine and Infertility\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e57267\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e77972b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"face210\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8581d5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a74470\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9b9c56c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.\\u00a0 Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.\\u00a0 The body is an organic whole and its functions are interconnected.\\u00a0 The meridian system, which allows vital energy to flow, links the body as a whole.\\u00a0 The TCM practitioner will treat patients with therapies from four main categories:\\u00a0 Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing).\\u00a0<\\/p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.\\u00a0 Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques.\\u00a0<\\/p><p><strong>Treating Infertility<\\/strong><\\/p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.\\u00a0 Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.\\u00a0 For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.<\\/p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.\\u00a0 This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.\\u00a0 Additionally, most contemporary medical treatments involve the use of numerous drugs.\\u00a0 The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.<\\/p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple\\u2019s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).\\u00a0 In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.\\u00a0 One of the groups received TCM treatments before and after implantation.\\u00a0 The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.<\\/p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:<\\/p><ul><li>TCM sees a personal as an integral mind\\/body organism and seeks to stimulate the body\\u2019s natural healing potential by treating root causes.<\\/li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.<\\/li><li>Traditional Chinese Medicine may be sued to strengthen and balance one\\u2019s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient\\u00a0 derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.\\u00a0 Pregnancy becomes easier to achieve and postpartum recuperation happens faster.\\u00a0<\\/li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.<\\/li><\\/ul><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments<\\/strong><\\/p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body\\u2019s systems regardless of age.\\u00a0 For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle.\\u00a0<\\/li><\\/ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body\\u2019s systems.<\\/p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40\\u2019s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.<\\/li><\\/ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.\\u00a0 There is not short cut to conception but in many cases, \\u201cturning back the clock\\u201d is possible.<\\/p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.\\u00a0 Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.\\u00a0 The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.<\\/li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.<\\/li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.\\u00a0 The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.<\\/li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.\\u00a0 Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.\\u00a0 However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.<\\/li><\\/ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for infertility and other conditions is provided at the Evergreen Wellness Center.\\u00a0 You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1782,1030,'_thumbnail_id','1029'),(1783,1031,'_elementor_edit_mode','builder'),(1784,1031,'_wp_page_template','default'),(1785,1031,'_elementor_template_type','post'),(1786,1031,'_elementor_version','2.5.14'),(1787,1031,'_elementor_data','[{\"id\":\"26de0d99\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1029,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/baby-2032303_1920-1024x683.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\":\"6b1f8cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"441fae64\",\"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\":\"56d4b6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Traditional Chinese Medicine and Infertility\\n\",\"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\":\"14360630\",\"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\":\"98b1f50\",\"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\":\"692620ea\",\"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\":\"760a7b87\",\"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\":\"2212e09e\",\"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\":\"2e9f2ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d89e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7eab3f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"959db52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d52f05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"04e4856\",\"elType\":\"widget\",\"settings\":{\"title\":\"Traditional Chinese Medicine and Infertility\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e57267\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e77972b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"face210\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8581d5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a74470\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9b9c56c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.\\u00a0 Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.\\u00a0 The body is an organic whole and its functions are interconnected.\\u00a0 The meridian system, which allows vital energy to flow, links the body as a whole.\\u00a0 The TCM practitioner will treat patients with therapies from four main categories:\\u00a0 Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing).\\u00a0<\\/p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.\\u00a0 Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques.\\u00a0<\\/p><p><strong>Treating Infertility<\\/strong><\\/p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.\\u00a0 Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.\\u00a0 For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.<\\/p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.\\u00a0 This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.\\u00a0 Additionally, most contemporary medical treatments involve the use of numerous drugs.\\u00a0 The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.<\\/p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple\\u2019s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).\\u00a0 In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.\\u00a0 One of the groups received TCM treatments before and after implantation.\\u00a0 The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.<\\/p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:<\\/p><ul><li>TCM sees a personal as an integral mind\\/body organism and seeks to stimulate the body\\u2019s natural healing potential by treating root causes.<\\/li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.<\\/li><li>Traditional Chinese Medicine may be sued to strengthen and balance one\\u2019s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient\\u00a0 derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.\\u00a0 Pregnancy becomes easier to achieve and postpartum recuperation happens faster.\\u00a0<\\/li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.<\\/li><\\/ul><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments<\\/strong><\\/p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body\\u2019s systems regardless of age.\\u00a0 For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle.\\u00a0<\\/li><\\/ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body\\u2019s systems.<\\/p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40\\u2019s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.<\\/li><\\/ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.\\u00a0 There is not short cut to conception but in many cases, \\u201cturning back the clock\\u201d is possible.<\\/p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.\\u00a0 Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.\\u00a0 The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.<\\/li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.<\\/li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.\\u00a0 The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.<\\/li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.\\u00a0 Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.\\u00a0 However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.<\\/li><\\/ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for infertility and other conditions is provided at the Evergreen Wellness Center.\\u00a0 You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17808b2\",\"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\":\"adc0dc2\",\"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\":\"2905872\",\"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\":\"19bac93\",\"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\":\"8d38437\",\"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}]'),(1788,1031,'_thumbnail_id','1029'),(1890,1049,'_elementor_edit_mode','builder'),(1891,1049,'_wp_page_template','default'),(1790,1032,'_elementor_edit_mode','builder'),(1791,1032,'_wp_page_template','default'),(1792,1032,'_elementor_template_type','post'),(1793,1032,'_elementor_version','2.5.14'),(1794,1032,'_elementor_data','[{\"id\":\"6bbedd7e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"420ade09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b266846\",\"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\":\"2682cc65\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\nTCM and Heart Diseases \",\"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\":\"7fedd322\",\"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\":\"61b5b243\",\"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\":\"4f9fbfb1\",\"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\":\"51fbb17c\",\"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\":\"469f5cfa\",\"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\":\"e16b1c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"98327f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bf989fa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5608611\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38c4f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"73e756f\",\"elType\":\"widget\",\"settings\":{\"title\":\"TCM and Heart Diseases <br>\\nChinese Medicine (TCM) Diagnosis of Heart Disease\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"647701d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dd16976\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6a2e734\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"671760e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7428659\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"31a1105\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<section class=\\\"elementor-element elementor-element-260f1af elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"260f1af\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-259fc60 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"259fc60\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-1c13388 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1c13388\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).<\\/p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and\\/or Blood Stasis.<br \\/>Kidney and Heart control whole body Yang<br \\/>Right foot edema \\u2013 Yang Qi disorders<br \\/>Left foot edema \\u2013 Yin disorders<\\/p><p>Chinese Medicine Heart Pain Patterns<\\/p><p><strong>Heart Yang Deficiency<\\/strong><\\/p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.<\\/p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.<\\/p><p><strong>Heart Qi Deficiency<\\/strong><\\/p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.<\\/p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.<\\/p><p><strong>Heart Qi and Blood Deficiency<\\/strong><\\/p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it\\u2019s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.<\\/p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.<\\/p><p><strong>Heart and Kidney Yin Deficiency<\\/strong><\\/p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.<\\/p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red\\/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.<\\/p><p><strong>Heart Blood Stagnation<\\/strong><\\/p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness\\u2019s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.<\\/p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.<\\/p><p><strong>Phlegm Fluid Stagnation<\\/strong><\\/p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.<\\/p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.<\\/p><p><strong>Liver Qi Stagnation<\\/strong><\\/p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.<\\/p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness\\/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-1b3628b elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"1b3628b\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-68db7b9 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"68db7b9\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-c0c4be1 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"c0c4be1\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-97dca47 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"97dca47\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-35da1ec elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"35da1ec\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-737edfa elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"737edfa\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-2f5dbcc elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"2f5dbcc\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-537c367 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"537c367\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-96b7a71 elementor-widget elementor-widget-shortcode\\\" data-id=\\\"96b7a71\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"shortcode.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-shortcode\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9c1e76\",\"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\":\"7500b91\",\"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\":\"dd58420\",\"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\":\"daab0ee\",\"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\":\"b445f76\",\"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}]'),(1795,1032,'_elementor_css','a:4:{s:4:\"time\";i:1555721328;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1806,1034,'_elementor_version','2.5.14'),(1805,1034,'_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><a href=\\\"https:\\/\\/test.evergreenwellness.com\\/heart\\/\\\">TCM and Heart Diseases<\\/a><\\/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}]'),(1804,1034,'_elementor_template_type','post'),(1802,1034,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1803,1034,'_elementor_edit_mode','builder'),(1808,1035,'_elementor_edit_mode','builder'),(1809,1035,'_wp_page_template','default'),(1810,1035,'_elementor_template_type','post'),(1811,1035,'_elementor_version','2.5.14');
INSERT INTO `wp9z_postmeta` VALUES (1812,1035,'_elementor_data','[{\"id\":\"4ae6470a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1006,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/road-1072823_1280.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\":\"2ed92e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8ad8f\",\"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\":\"7a5d346e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese 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\":\"11f6caac\",\"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\":\"78d1636c\",\"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\":\"2c42aefe\",\"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\":\"2a6b2919\",\"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\":\"5c8fe78c\",\"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\":\"857a747\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9817be7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c91563a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7abf7f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"613544f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcbf5ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af698cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dec341\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8d1cfc7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb83cb3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dda2cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b6e36f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy.<\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"707a0d6\",\"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\":\"6fd13d4\",\"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\":\"fa612fc\",\"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\":\"3b433b5\",\"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\":\"cf7ca21\",\"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}]'),(1813,1035,'_elementor_css','a:4:{s:4:\"time\";i:1555719269;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1823,1037,'_elementor_template_type','post'),(1824,1037,'_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\\/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>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><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\":\"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}]'),(1822,1037,'_elementor_edit_mode','builder'),(1821,1037,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1848,1041,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:686;s:6:\"height\";i:332;s:4:\"file\";s:21:\"2019/04/treatment.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"treatment-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:21:\"treatment-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;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:{}}}'),(1827,1038,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1828,1038,'_elementor_edit_mode','builder'),(1829,1038,'_elementor_template_type','post'),(1830,1038,'_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\\/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\":\"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}]'),(1831,1038,'_elementor_version','2.5.14'),(1832,1038,'_elementor_css','a:4:{s:4:\"time\";i:1555722660;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1834,1039,'_elementor_edit_mode','builder'),(1835,1039,'_wp_page_template','default'),(1836,1039,'_elementor_template_type','post'),(1837,1039,'_elementor_version','2.5.14'),(1838,1039,'_elementor_data','[{\"id\":\"6bbedd7e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":971,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bridge-2887353_1280.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\":\"420ade09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b266846\",\"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\":\"2682cc65\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\nTCM and Heart Diseases \",\"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\":\"7fedd322\",\"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\":\"61b5b243\",\"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\":\"4f9fbfb1\",\"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\":\"51fbb17c\",\"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\":\"469f5cfa\",\"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\":\"e16b1c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"98327f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bf989fa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5608611\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38c4f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"73e756f\",\"elType\":\"widget\",\"settings\":{\"title\":\"TCM and Heart Diseases <br>\\nChinese Medicine (TCM) Diagnosis of Heart Disease\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"647701d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dd16976\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6a2e734\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"671760e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7428659\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"31a1105\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<section class=\\\"elementor-element elementor-element-260f1af elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"260f1af\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-259fc60 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"259fc60\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-1c13388 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1c13388\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).<\\/p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and\\/or Blood Stasis.<br \\/>Kidney and Heart control whole body Yang<br \\/>Right foot edema \\u2013 Yang Qi disorders<br \\/>Left foot edema \\u2013 Yin disorders<\\/p><p>Chinese Medicine Heart Pain Patterns<\\/p><p><strong>Heart Yang Deficiency<\\/strong><\\/p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.<\\/p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.<\\/p><p><strong>Heart Qi Deficiency<\\/strong><\\/p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.<\\/p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.<\\/p><p><strong>Heart Qi and Blood Deficiency<\\/strong><\\/p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it\\u2019s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.<\\/p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.<\\/p><p><strong>Heart and Kidney Yin Deficiency<\\/strong><\\/p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.<\\/p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red\\/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.<\\/p><p><strong>Heart Blood Stagnation<\\/strong><\\/p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness\\u2019s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.<\\/p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.<\\/p><p><strong>Phlegm Fluid Stagnation<\\/strong><\\/p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.<\\/p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.<\\/p><p><strong>Liver Qi Stagnation<\\/strong><\\/p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.<\\/p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness\\/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-1b3628b elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"1b3628b\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-68db7b9 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"68db7b9\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-c0c4be1 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"c0c4be1\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-97dca47 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"97dca47\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-35da1ec elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"35da1ec\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-737edfa elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"737edfa\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-2f5dbcc elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"2f5dbcc\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-537c367 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"537c367\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-96b7a71 elementor-widget elementor-widget-shortcode\\\" data-id=\\\"96b7a71\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"shortcode.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-shortcode\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9c1e76\",\"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\":\"7500b91\",\"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\":\"dd58420\",\"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\":\"daab0ee\",\"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\":\"b445f76\",\"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}]'),(1839,1039,'_elementor_css','a:4:{s:4:\"time\";i:1555721328;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1850,1042,'_elementor_edit_mode','builder'),(1851,1042,'_elementor_template_type','post'),(1852,1042,'_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\":\"70acc86\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f6e51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4adeb39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/treatment.jpg\",\"id\":1041}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d75242\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"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\\/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\":\"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},{\"id\":\"ec36b69\",\"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\":\"6077891\",\"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\":\"d735c4b\",\"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\":\"1ed4b15\",\"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\":\"398c99e\",\"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},{\"id\":\"3679ed8\",\"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\":\"8e6cb6e\",\"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\":\"cf26a8e\",\"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\":\"84d3858\",\"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\":\"ce80c30\",\"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}]'),(1859,1044,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1860,1044,'_elementor_edit_mode','builder'),(1861,1044,'_elementor_template_type','post'),(1862,1044,'_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\":\"70acc86\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f6e51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4adeb39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/treatment.jpg\",\"id\":1041}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d75242\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"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\\/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\":\"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}]'),(1849,1042,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1853,1042,'_elementor_version','2.5.14'),(1863,1044,'_elementor_version','2.5.14'),(1864,1045,'_elementor_edit_mode','builder'),(1865,1045,'_wp_page_template','default'),(1866,1045,'_elementor_template_type','post'),(1867,1045,'_elementor_version','2.5.14'),(1868,1045,'_elementor_data','[{\"id\":\"4ae6470a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1006,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/road-1072823_1280.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\":\"2ed92e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8ad8f\",\"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\":\"7a5d346e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese 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\":\"11f6caac\",\"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\":\"78d1636c\",\"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\":\"2c42aefe\",\"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\":\"2a6b2919\",\"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\":\"5c8fe78c\",\"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\":\"857a747\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9817be7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c91563a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7abf7f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"613544f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcbf5ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af698cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dec341\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8d1cfc7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb83cb3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dda2cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b6e36f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy.<\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"707a0d6\",\"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\":\"6fd13d4\",\"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\":\"fa612fc\",\"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\":\"3b433b5\",\"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\":\"cf7ca21\",\"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}]'),(1869,1045,'_elementor_css','a:4:{s:4:\"time\";i:1555719269;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1871,1046,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1872,1046,'_elementor_edit_mode','builder'),(1873,1046,'_elementor_template_type','post'),(1874,1046,'_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\":\"70acc86\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f6e51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4adeb39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/treatment.jpg\",\"id\":1041}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d75242\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"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\\/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\":\"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}]'),(1875,1046,'_elementor_version','2.5.14'),(1876,1046,'_elementor_css','a:4:{s:4:\"time\";i:1555723877;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1879,1047,'_elementor_template_type','post'),(1880,1047,'_elementor_version','2.5.14'),(1881,1047,'_elementor_data','[{\"id\":\"6bbedd7e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":971,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bridge-2887353_1280.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\":\"420ade09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b266846\",\"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\":\"2682cc65\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\nTCM and Heart Diseases \",\"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\":\"7fedd322\",\"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\":\"61b5b243\",\"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\":\"4f9fbfb1\",\"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\":\"51fbb17c\",\"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\":\"469f5cfa\",\"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\":\"e16b1c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"98327f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bf989fa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5608611\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38c4f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"73e756f\",\"elType\":\"widget\",\"settings\":{\"title\":\"TCM and Heart Diseases <br>\\nChinese Medicine (TCM) Diagnosis of Heart Disease\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"647701d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dd16976\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6a2e734\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"671760e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7428659\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"31a1105\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<section class=\\\"elementor-element elementor-element-260f1af elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"260f1af\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-259fc60 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"259fc60\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-1c13388 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1c13388\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).<\\/p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and\\/or Blood Stasis.<br \\/>Kidney and Heart control whole body Yang<br \\/>Right foot edema \\u2013 Yang Qi disorders<br \\/>Left foot edema \\u2013 Yin disorders<\\/p><p>Chinese Medicine Heart Pain Patterns<\\/p><p><strong>Heart Yang Deficiency<\\/strong><\\/p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.<\\/p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.<\\/p><p><strong>Heart Qi Deficiency<\\/strong><\\/p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.<\\/p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.<\\/p><p><strong>Heart Qi and Blood Deficiency<\\/strong><\\/p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it\\u2019s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.<\\/p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.<\\/p><p><strong>Heart and Kidney Yin Deficiency<\\/strong><\\/p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.<\\/p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red\\/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.<\\/p><p><strong>Heart Blood Stagnation<\\/strong><\\/p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness\\u2019s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.<\\/p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.<\\/p><p><strong>Phlegm Fluid Stagnation<\\/strong><\\/p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.<\\/p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.<\\/p><p><strong>Liver Qi Stagnation<\\/strong><\\/p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.<\\/p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness\\/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-1b3628b elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"1b3628b\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-68db7b9 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"68db7b9\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-c0c4be1 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"c0c4be1\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-97dca47 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"97dca47\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-35da1ec elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"35da1ec\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-737edfa elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"737edfa\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-2f5dbcc elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"2f5dbcc\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-537c367 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"537c367\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-96b7a71 elementor-widget elementor-widget-shortcode\\\" data-id=\\\"96b7a71\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"shortcode.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-shortcode\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9c1e76\",\"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\":\"7500b91\",\"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\":\"dd58420\",\"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\":\"daab0ee\",\"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\":\"b445f76\",\"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}]'),(1882,1047,'_elementor_css','a:4:{s:4:\"time\";i:1555723056;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1885,1048,'_elementor_template_type','post'),(1886,1048,'_elementor_version','2.5.14'),(1887,1048,'_elementor_data','[{\"id\":\"26de0d99\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1029,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/baby-2032303_1920-1024x683.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\":\"6b1f8cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"441fae64\",\"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\":\"56d4b6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Traditional Chinese Medicine and Infertility\\n\",\"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\":\"14360630\",\"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\":\"98b1f50\",\"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\":\"692620ea\",\"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\":\"760a7b87\",\"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\":\"2212e09e\",\"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\":\"2e9f2ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d89e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7eab3f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"959db52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d52f05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"04e4856\",\"elType\":\"widget\",\"settings\":{\"title\":\"Traditional Chinese Medicine and Infertility\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e57267\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e77972b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"face210\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8581d5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a74470\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9b9c56c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.\\u00a0 Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.\\u00a0 The body is an organic whole and its functions are interconnected.\\u00a0 The meridian system, which allows vital energy to flow, links the body as a whole.\\u00a0 The TCM practitioner will treat patients with therapies from four main categories:\\u00a0 Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing).\\u00a0<\\/p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.\\u00a0 Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques.\\u00a0<\\/p><p><strong>Treating Infertility<\\/strong><\\/p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.\\u00a0 Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.\\u00a0 For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.<\\/p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.\\u00a0 This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.\\u00a0 Additionally, most contemporary medical treatments involve the use of numerous drugs.\\u00a0 The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.<\\/p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple\\u2019s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).\\u00a0 In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.\\u00a0 One of the groups received TCM treatments before and after implantation.\\u00a0 The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.<\\/p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:<\\/p><ul><li>TCM sees a personal as an integral mind\\/body organism and seeks to stimulate the body\\u2019s natural healing potential by treating root causes.<\\/li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.<\\/li><li>Traditional Chinese Medicine may be sued to strengthen and balance one\\u2019s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient\\u00a0 derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.\\u00a0 Pregnancy becomes easier to achieve and postpartum recuperation happens faster.\\u00a0<\\/li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.<\\/li><\\/ul><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments<\\/strong><\\/p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body\\u2019s systems regardless of age.\\u00a0 For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle.\\u00a0<\\/li><\\/ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body\\u2019s systems.<\\/p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40\\u2019s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.<\\/li><\\/ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.\\u00a0 There is not short cut to conception but in many cases, \\u201cturning back the clock\\u201d is possible.<\\/p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.\\u00a0 Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.\\u00a0 The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.<\\/li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.<\\/li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.\\u00a0 The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.<\\/li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.\\u00a0 Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.\\u00a0 However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.<\\/li><\\/ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for infertility and other conditions is provided at the Evergreen Wellness Center.\\u00a0 You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17808b2\",\"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\":\"adc0dc2\",\"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\":\"2905872\",\"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\":\"19bac93\",\"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\":\"8d38437\",\"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}]'),(1888,1048,'_thumbnail_id','1029'),(1889,1048,'_elementor_css','a:4:{s:4:\"time\";i:1555721919;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1892,1049,'_elementor_template_type','post'),(1893,1049,'_elementor_version','2.5.14'),(1894,1049,'_elementor_data','[{\"id\":\"5dad9ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":977,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/horses-945388_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\":\"487844c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6713f25a\",\"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\":\"41cb3358\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nTraditional Chinese Medicine <br> and Stroke Rehabilitation\",\"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\":\"6c4b1056\",\"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\":\"3a0e353b\",\"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\":\"24bc5464\",\"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\":\"72cebd46\",\"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\":\"6f466c08\",\"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\":\"2fd016b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"944e086\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43116a8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ae6346\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04d6777\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a88e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nTraditional Chinese Medicine and Stroke Rehabilitation\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8b0d7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07327e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"227b269\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2fff23\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"41b1ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ec7181c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In addition being the third leading cause of death in the U.S., strokes are a leading cause of serious long-term disability.\\u00a0 About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled.\\u00a0 That number is expected to surpass the 1 million mark by 2050.\\u00a0 Significant physical, cognitive and psychological disabilities create major medical and social problems.\\u00a0<\\/p><p>In the current medical climate, the type and amount of stroke rehabilitation a patient receives is many times dictated by insurance plan offerings, yet medical practitioners are unanimous in agreement that a comprehensive rehabilitative therapy program\\u00a0 provides the best chance of meaningful recovery.\\u00a0 Of the 72 million Americans that have experienced serious injury, stroke or other disabling disease more that 60 percent never receive proper rehabilitation.\\u00a0 Yet, the earlier rehabilitation begins the more likely the patient is to regain the ability to function and return to a productive satisfying life.<\\/p><p>A stroke or cerebral vascular accidents (CVA) occur when a blood clot blocks a blood vessel or artery, or when a blood vessel breaks, interrupting blood flow to an area of the brain.\\u00a0 When a patient survives a stroke, all but a small percentage of them suffer from limitations in functional activities and subsequently do not become self-sufficient. We called it post-stroke syndrome.<\\/p><p>According to National Stroke Association, there are nearly 4 million people in the United States who have survived a stroke and are living with the after-effects. These numbers do not reflect the scope of the problem and do not count the millions of husbands, wives and children who live with and care for stroke survivors and who are, because of their own altered lifestyle, greatly affected by stroke.\\u00a0 In the United States, Post-stroke patients normally receive physical therapy<em>\\u00a0(PT)<\\/em>, Occupational therapy\\u00a0<em>(OT)<\\/em>\\u00a0and\\/or Speech language pathology for their rehabilitation.<\\/p><p>From Traditional Chinese Medicine (TCM) aspect, stroke caused by imbalance of\\u00a0<em>Yin\\u00a0<\\/em>and<em>\\u00a0Yang\\u00a0<\\/em>of inner organ and imbalance\\u00a0<em>Qi<\\/em>\\u00a0and\\u00a0<em>blood.<\\/em>\\u00a0The classification of\\u00a0<em>Synopsis of the Golden Chamber,\\u00a0<\\/em>wrote by Zhang Zhongjing, a famous TCM doctor in the Eastern Han dynasty (300 AD), had described the symptoms and treatment method. Now many studies have been done for post-stroke patients to speed rehabilitation using TCM therapy such as Acupuncture and Moxibustion, Herbs, Tuina Anmo (Chinese Massage) and Qigong (Energy Healing). Following is a further explain these therapies and some results of studies that have been performed to date.<\\/p><p><strong><em>Acupuncture and Moxibustion Therapy<\\/em><\\/strong><\\/p><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>The study done by Chen YM, et al shows that for 108 cases of hemiplegia or paralysis of on eside of the body caused by stroke, early treatment (first three weeks) with acupuncture produces better result than the treatment initiated three weeks after stroke. The improvement rate is from 90.9% down to 71.4%.<\\/p><p>Another study done by Kjendahl A, et al, Sunnaas Rehabilitation Hospital, Nesoddtangen, Norway shows that the acupuncture group improved significantly more than the controls, both during the treatment period of six weeks, and even more during the following year, both according to MAS, ADL, NHP and the social situation.<\\/p><p><strong><em>Herbal Therapy<\\/em><\\/strong><\\/p><p>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China.<\\/p><p>The study done by Lin Faching, et al, Department of Neurology, Renji Hospital, Shanghai, China described: Of the 78 cased for which clinical signs were evaluated: vertigo was found in 43 cases (55.12%), nystagmus (rapid rhythmic repetitious involuntary (unwilled) horizontal, vertical or rotary eye movements) in 34 cases (43.59%), mental disorders ( including confusion, depression, disorientation, conscious blur and insomnia) in 14 cases (17.94%), motor paralysis in 28 cases (35.89 %), ataxia (Wobbliness. Lack of coordination and unsteadiness due to the brain\\u2019s failure to regulate the body\\u2019s posture and regulate the strength and direction of limb movements) in 18 cases (23.07%), sensory disorders in 12 cases (15.38%), and dyslalia (an articulatory disorder in which a patient does not pronounce the sounds clearly or they replace one sound for another) in 7 cases (8.97%). When the herb formulas were used in treatment, of the entire case sample, 97.44% reported an improvement in some symptoms and a satisfactory result was judged to be 74.36%. No obvious side effects were noted as a result of treatment when using the herbs.<\\/p><p><strong><em>Tuina Anmo (Chinese Massage) Therapy<\\/em><\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>The article wrote by Li Yangao, et al, The Bethune International Peace Hospital, China, mentioned that 44 patients had suffered from hemiplegia or paralysis of one side of the body due to stroke. The average age of patients was 54. The disease course had lasted from one month to three years, with an average of 105 days. They were treated by Tuina\\u00a0 Anmo therapy from 10 to 60 times, with an average of 24 times. The result is: 18 out of 44 cases improved obviously, 18 improved, 8 cases failed, the effective rate was 81.82%.<\\/p><p><strong><em>Qigong (Energy Healing) Therapy<\\/em><\\/strong><\\/p><p>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breath, exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose.<\\/p><p>According to\\u00a0<em>147 cases of hemiplegia due to cerebrovascular accident treated by Qigong<\\/em>, Zhang Xia, presented on the Fourth World Conference on Medical Qigong, the total effective rate is 93.2% in 12 weeks treatment period.<\\/p><p><strong><em>Integrative Therapy of Traditional Chinese and Western Medicine<\\/em><\\/strong><\\/p><p>It includes Acupuncture and Moxibustion Therapy, Herbal Therapy, Tuina Anmo (Chinese Massage) Therapy, Qigong Therapy, Physical Therapy, Occupational Therapy and speech training.<\\/p><p>Wang Shaoqin et al, Beijing Rehabilitation Hospital, China, report their study on 100 cases of post-stroke patients treated by an integrated therapy of Traditional Chinese and Western medicine. After the 3 months treatment, the total effective rate was 83%. For post-cerebral hemorrhage cases the total effective rate was 89.29%, for post-cerebral infarction was 80.56%. The overall effective rate of 67 cases under age 60 was 91.04, of over age 60 was 66.67%. There was extremely significant difference between these two age groups. The total effective rate of 50 cases whose treatment started within 6 months after stroke was 94%; the effective rate of 50 cases whose treatment started within 6 months later stroke was 72%. There was extremely significant difference between these two age groups, too.<\\/p><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for stroke and other conditions is provided at the Evergreen Wellness Center.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0c254e\",\"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\":\"600d034\",\"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\":\"087f197\",\"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\":\"cae6614\",\"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\":\"cf5b9e1\",\"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}]'),(1895,1049,'_elementor_css','a:4:{s:4:\"time\";i:1555720849;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1898,1050,'_elementor_template_type','post'),(1899,1050,'_elementor_version','2.5.14'),(1900,1050,'_elementor_data','[{\"id\":\"45b8b783\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":978,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/castle-sponeck-2578523_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\":\"689e44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"509559ce\",\"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\":\"6c9c3de1\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Efficacy of Acupuncture for Stroke Rehabilitation\",\"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\":\"6394f87b\",\"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\":\"45ec186d\",\"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\":\"19d10b45\",\"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\":\"5a7765b6\",\"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\":\"2787c22\",\"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\":\"9d81abe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3dee40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1289d97\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b30f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7a6149c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"caab668\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1140ce3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8eb41bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"07237b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Qizhi Gao, Wichita, KS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69a5fd3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e7cc54f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>OBJECTIVE:<\\/strong>\\u00a0The purpose of this study was to determine the effects in the functional recovery of post stroke patients receiving multidisciplinary western rehabilitation and patients receiving acupuncture with electrical stimulation in addition to multidisciplinary western rehabilitation.<\\/p><p><strong>BACKGROUND:<\\/strong>\\u00a0Stroke is third leading cause of death in the U.S. and a leading cause of serious long-term disability. About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled. Physical, cognitive and psychological disabilities are major medical and social problems. Very little research in this area has been done in the United States.<\\/p><p><strong>DESIGN\\/METHODS:<\\/strong>\\u00a0The study was a 2:1 randomized study. The study group received classical acupuncture with electrical stimulation for 60 minutes in addition to their standard daily physical, occupational, and speech therapy.<\\/p><p><strong>Intervention(s):<\\/strong>\\u00a0All patients received 3 hours of therapy (physical, occupational and speech therapy) Monday through Friday and 1\\u00bd hours of therapy on weekends<strong>.\\u00a0<\\/strong>Those in the study group also received acupuncture with electrical stimulation for 60 minutes on weekdays.<\\/p><p><strong>Main Outcome Measure(s):<\\/strong>\\u00a0Motor function, mobility, and daily life activities were assessed at the time of admission, every 7 days during length of stay and at the time of discharge using the Functional Independence Measure (FIM) scale.<\\/p><p><strong>RESULTS:<\\/strong>\\u00a0Patients in the control group and the study group did not differ significantly in age, gender or stroke side. There were statistically significant improvements in discharge placement and total FIM score change in the study group.<\\/p><p><strong>CONCLUSIONS\\/RELEVANCE:<\\/strong>\\u00a0Acupuncture is an effective adjunct to standard rehabilitation for post stroke patients as demonstrated by the 48 point FIM score change in the study group vs. the 20-point FIM score change in the control group and disposition of 90% of patients returned to their home in the study group vs. 33% in the control group.<\\/p><p>Above paper was presented at the American Academy of Neurology 59th Annual Meeting on May 2, 2007<\\/p><p>Supported by: Wesley Medical Research Institutes, 3306 E. Central, Wichita, KS 67208, 316-686-7172, Wesley Rehabilitation Hospital.<br \\/>Category \\u2013 Cerebrovascular Disease<br \\/>SubCategory \\u2013 Clinical Aspects<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccfa0b2\",\"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\":\"b9222fb\",\"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\":\"46b99c6\",\"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\":\"14a8c9d\",\"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\":\"c2e0cd2\",\"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}]'),(1901,1050,'_thumbnail_id','974'),(1902,1050,'_elementor_css','a:4:{s:4:\"time\";i:1555720369;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1905,1051,'_elementor_template_type','post'),(1906,1051,'_elementor_version','2.5.14'),(1907,1051,'_elementor_data','[{\"id\":\"52817f92\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":972,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/holiday-house-177401_1280.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\":\"7ec56c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58b22b01\",\"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\":\"5c622b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction to Traditional Chinese Medicine <br> \\nHolistic Concept, Dynamic View and Natural Therapies\",\"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\":\"389ffead\",\"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\":\"68806146\",\"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\":\"7c0fd725\",\"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\":\"69a174ae\",\"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\":\"2b5ee5e9\",\"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\":\"045ed62\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9108bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c17abea\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1b4e64\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"22a8834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"aa02a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction to Traditional Chinese Medicine <br> <br>\\nHolistic Concept, Dynamic View and Natural Therapies\",\"align\":\"center\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb8ef4a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b00259\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"89e1a57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d13f7d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9654fd\",\"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\":\"31a1634\",\"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\":\"ff50e26\",\"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\":\"c3d81c1\",\"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\":\"b0e6f31\",\"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}]'),(1908,1051,'_elementor_css','a:4:{s:4:\"time\";i:1555719340;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2348,1001,'_elementor_css','a:4:{s:4:\"time\";i:1555811090;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2346,1135,'_wp_trash_meta_status','publish'),(2347,1135,'_wp_trash_meta_time','1555810936'),(2338,1013,'_elementor_css','a:4:{s:4:\"time\";i:1555810590;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2370,1019,'_elementor_css','a:4:{s:4:\"time\";i:1555811699;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2387,1023,'_elementor_css','a:4:{s:4:\"time\";i:1555812058;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2328,1027,'_elementor_css','a:4:{s:4:\"time\";i:1555810195;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1923,1053,'_elementor_edit_mode','builder'),(1924,1053,'_elementor_template_type','post'),(1925,1053,'_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\":\"70acc86\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f6e51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4adeb39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/treatment.jpg\",\"id\":1041}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d75242\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"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\":[]}},\"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\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"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\":[]}},\"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 of 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\":[]}},\"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\":\"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\\/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\":\"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}]'),(1922,1053,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1926,1053,'_elementor_version','2.5.14'),(1928,837,'_oembed_da2ca1975b1fbf268768bcd4f4d72700','<iframe src=\"https://player.vimeo.com/video/313597238?dnt=1&app_id=122963\" width=\"750\" height=\"422\" frameborder=\"0\" title=\"Magic Needle Show 1/5\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1929,837,'_oembed_time_da2ca1975b1fbf268768bcd4f4d72700','1555725528'),(1930,837,'_oembed_8e7d4f5f29588fab24ab273d56eccc6b','<iframe src=\"https://player.vimeo.com/video/194991450?dnt=1&app_id=122963\" width=\"480\" height=\"360\" frameborder=\"0\" title=\"What Is Bigu Qigong\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1931,837,'_oembed_time_8e7d4f5f29588fab24ab273d56eccc6b','1555725528'),(1932,837,'_oembed_e487ab3e1056cad287d3476ad8d04eb1','<iframe width=\"750\" height=\"563\" src=\"https://www.youtube.com/embed/RTQGpPwn2BU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(1933,837,'_oembed_time_e487ab3e1056cad287d3476ad8d04eb1','1555725528'),(1944,1055,'_elementor_version','2.5.14'),(1943,1055,'_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\":\"70acc86\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f6e51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4adeb39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/treatment.jpg\",\"id\":1041}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d75242\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"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\":[]}},\"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\":[]}},\"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 of 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\":[]}},\"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\":\"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\\/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\":\"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}]'),(1942,1055,'_elementor_template_type','post'),(1940,1055,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1941,1055,'_elementor_edit_mode','builder'),(1951,1057,'_elementor_edit_mode','builder'),(1952,1057,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (1953,1057,'_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\":\"70acc86\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f6e51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4adeb39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/treatment.jpg\",\"id\":1041}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d75242\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"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\":\"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\\/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\":\"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}]'),(1950,1057,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1954,1057,'_elementor_version','2.5.14'),(1963,889,'_elementor_css','a:4:{s:4:\"time\";i:1555775419;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:17:\"Libre Baskerville\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1956,1058,'_edit_lock','1555812240:1'),(1968,1060,'_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\":\"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\":\"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\":\"325a6462\",\"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\":\"2e621e77\",\"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\":\"30bc9305\",\"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\":\"e7e87cb\",\"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\":\"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\":\"7452c274\",\"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\":\"62575da5\",\"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\":\"18934051\",\"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\":\"cd42178\",\"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\":\"f3ebfcc\",\"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\":\"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\":\"1523a46e\",\"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\":\"6131eae8\",\"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\":\"52d9e4fd\",\"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\":\"453666dd\",\"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\":\"4023ab5c\",\"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\":\"70acc86\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f6e51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4adeb39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/treatment.jpg\",\"id\":1041}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d75242\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"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\":\"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\\/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\":\"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}]'),(1964,893,'_elementor_css','a:4:{s:4:\"time\";i:1555775441;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:17:\"Libre Baskerville\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2030,1074,'_wp_page_template','default'),(2031,1074,'_elementor_edit_mode','builder'),(2032,1074,'_elementor_template_type','post'),(2033,1074,'_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}]'),(2021,1072,'_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\":\"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\":\"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\":\"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\\/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\":\"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}]'),(2006,1070,'_wp_page_template','default'),(2007,1070,'_elementor_edit_mode','builder'),(2008,1070,'_elementor_template_type','post'),(2009,1070,'_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\":\"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\":\"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\":\"\",\"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\":\"4023ab5c\",\"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\":\"70acc86\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f6e51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4adeb39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/treatment.jpg\",\"id\":1041}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d75242\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"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\":\"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\\/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\":\"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}]'),(1994,1067,'_wp_page_template','default'),(1995,1067,'_elementor_edit_mode','builder'),(1996,1067,'_elementor_template_type','post'),(1997,1067,'_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\":\"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\":\"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\":\"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\":\"f3ebfcc\",\"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\":\"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\":\"1523a46e\",\"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\":\"6131eae8\",\"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\":\"52d9e4fd\",\"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\":\"453666dd\",\"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\":\"4023ab5c\",\"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\":\"70acc86\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f6e51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4adeb39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/treatment.jpg\",\"id\":1041}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d75242\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"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\":\"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\\/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\":\"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}]'),(1965,1060,'_wp_page_template','default'),(1966,1060,'_elementor_edit_mode','builder'),(1967,1060,'_elementor_template_type','post'),(1969,1060,'_elementor_version','2.5.14'),(1986,1063,'_wp_attached_file','2019/04/flower-2197679_640.jpg'),(1987,1063,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:425;s:4:\"file\";s:30:\"2019/04/flower-2197679_640.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"flower-2197679_640-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:\"flower-2197679_640-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"20\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D90\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1971,1061,'_wp_page_template','default'),(1972,1061,'_elementor_edit_mode','builder'),(1973,1061,'_elementor_template_type','post'),(1974,1061,'_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\":\"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\":\"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\":\"325a6462\",\"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\":\"2e621e77\",\"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\":\"30bc9305\",\"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\":\"e7e87cb\",\"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\":\"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\":\"7452c274\",\"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\":\"62575da5\",\"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\":\"18934051\",\"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\":\"cd42178\",\"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\":\"f3ebfcc\",\"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\":\"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\":\"1523a46e\",\"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\":\"6131eae8\",\"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\":\"52d9e4fd\",\"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\":\"453666dd\",\"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\":\"4023ab5c\",\"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\":\"70acc86\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f6e51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4adeb39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/treatment.jpg\",\"id\":1041}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d75242\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"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\":\"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\\/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\":\"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}]'),(1975,1061,'_elementor_version','2.5.14'),(1976,1061,'_elementor_css','a:4:{s:4:\"time\";i:1555776427;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1977,837,'neve_meta_container','full-width'),(1978,837,'neve_meta_sidebar','full-width'),(1979,837,'neve_meta_disable_title','on'),(1998,1067,'_elementor_version','2.5.14'),(2010,1070,'_elementor_version','2.5.14'),(2018,1072,'_wp_page_template','default'),(2019,1072,'_elementor_edit_mode','builder'),(2020,1072,'_elementor_template_type','post'),(2012,1071,'_wp_page_template','default'),(2013,1071,'_elementor_edit_mode','builder'),(2014,1071,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (2015,1071,'_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\":\"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\":\"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\":\"70acc86\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f6e51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4adeb39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/treatment.jpg\",\"id\":1041}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d75242\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"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\":\"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\\/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\":\"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}]'),(1992,1066,'_wp_attached_file','2019/04/ornamental-poppies-139409_640.jpg'),(1993,1066,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:41:\"2019/04/ornamental-poppies-139409_640.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"ornamental-poppies-139409_640-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:41:\"ornamental-poppies-139409_640-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:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 50D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"300\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:16:\"0.00555555555556\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1990,1065,'_wp_attached_file','2019/04/dahlia-1642461_640.jpg'),(1991,1065,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:486;s:4:\"file\";s:30:\"2019/04/dahlia-1642461_640.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"dahlia-1642461_640-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:\"dahlia-1642461_640-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;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:2:\"85\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1988,1064,'_wp_attached_file','2019/04/flowers-429041_640.jpg'),(1989,1064,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:517;s:4:\"file\";s:30:\"2019/04/flowers-429041_640.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"flowers-429041_640-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:\"flowers-429041_640-300x242.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"Canon EOS 600D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"42\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2004,1069,'_wp_attached_file','2019/04/water-lily-2418339_640.jpg'),(2005,1069,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:34:\"2019/04/water-lily-2418339_640.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"water-lily-2418339_640-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:\"water-lily-2418339_640-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;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 D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";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:{}}}'),(2016,1071,'_elementor_version','2.5.14'),(2017,1071,'_elementor_css','a:4:{s:4:\"time\";i:1555784337;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2022,1072,'_elementor_version','2.5.14'),(2024,1073,'_wp_page_template','default'),(2025,1073,'_elementor_edit_mode','builder'),(2026,1073,'_elementor_template_type','post'),(2027,1073,'_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\":\"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}]'),(2028,1073,'_elementor_version','2.5.14'),(2029,1073,'_elementor_css','a:4:{s:4:\"time\";i:1555784468;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2034,1074,'_elementor_version','2.5.14'),(2035,837,'_elementor_css','a:4:{s:4:\"time\";i:1555785509;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2036,1075,'_edit_lock','1555785988:1'),(2241,1115,'_menu_item_object_id','1013'),(2038,1076,'_customize_changeset_uuid','440e1dfa-98fc-461b-8a74-197a88b14cbc'),(2240,1115,'_menu_item_menu_item_parent','0'),(2040,1077,'_customize_changeset_uuid','440e1dfa-98fc-461b-8a74-197a88b14cbc'),(2259,1118,'_menu_item_menu_item_parent','0'),(2258,1118,'_menu_item_type','post_type'),(2257,1117,'_edit_lock','1555808449:1'),(2256,1111,'_wp_trash_meta_time','1555808340'),(2255,1111,'_wp_trash_meta_status','publish'),(2254,1116,'_menu_item_url',''),(2253,1116,'_menu_item_xfn',''),(2252,1116,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2251,1116,'_menu_item_target',''),(2250,1116,'_menu_item_object','page'),(2249,1116,'_menu_item_object_id','1001'),(2248,1116,'_menu_item_menu_item_parent','0'),(2247,1116,'_menu_item_type','post_type'),(2246,1115,'_menu_item_url',''),(2245,1115,'_menu_item_xfn',''),(2244,1115,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2243,1115,'_menu_item_target',''),(2242,1115,'_menu_item_object','page'),(2239,1115,'_menu_item_type','post_type'),(2238,1114,'_menu_item_url',''),(2237,1114,'_menu_item_xfn',''),(2236,1114,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2234,1114,'_menu_item_object','page'),(2214,1111,'_edit_lock','1555808329:1'),(2213,1110,'_wp_trash_meta_time','1555808197'),(2212,1110,'_wp_trash_meta_status','publish'),(2211,1109,'_wp_trash_meta_time','1555808114'),(2081,1075,'_wp_trash_meta_status','publish'),(2082,1075,'_wp_trash_meta_time','1555786029'),(2083,1085,'_wp_trash_meta_status','publish'),(2084,1085,'_wp_trash_meta_time','1555786466'),(2085,1086,'_edit_lock','1555806050:1'),(2086,1087,'_edit_lock','1555800079:1'),(2087,1087,'_edit_last','1'),(2088,1087,'neve_meta_content_width','70'),(2089,1087,'_elementor_edit_mode','builder'),(2090,1087,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(2091,1087,'_elementor_template_type','post'),(2092,1087,'_elementor_version','2.5.14'),(2093,1089,'_edit_lock','1555810087:1'),(2094,1089,'_edit_last','1'),(2095,1089,'neve_meta_content_width','70'),(2096,1089,'_elementor_edit_mode','builder'),(2097,1089,'_wp_page_template','default'),(2098,1089,'_elementor_template_type','post'),(2099,1089,'_elementor_version','2.5.14'),(2100,1089,'_elementor_data','[{\"id\":\"a07b826\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f042a54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6dd6b62\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a375ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terms\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a12307\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb3432\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"da5fe94\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"4bc6f68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a28c81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>TERMS OF USE<\\/strong>\\u00a0These Terms of Use (\\u201cTerms\\u201d) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.<\\/p><p>\\u00a0<\\/p><p><strong>Changes in Terms<\\/strong><\\/p><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.<\\/p><p>\\u00a0<\\/p><p><strong>Termination<\\/strong><\\/p><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.<\\/p><p>\\u00a0<\\/p><p><strong>Compliance with Laws<\\/strong><\\/p><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.<\\/p><p>\\u00a0<\\/p><p><strong>Content<\\/strong><\\/p><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the \\u201cContent\\u201d. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and\\/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com\\u2019s intellectual property may not be used without evergreenwellness.com\\u2019s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.<\\/p><p>\\u00a0<\\/p><p><strong>Product Reviews<\\/strong><\\/p><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer\\u2019s experience is what an average or typical customer may expect to achieve.<\\/p><p>\\u00a0<\\/p><p><strong>Accounts<\\/strong><\\/p><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person\\u2019s username, password or other account information, or another person\\u2019s name, likeness, voice, image or photograph.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability as to the\\u00a0evergreenwellness.com<\\/strong>\\u00a0<strong>Site and Content<\\/strong><\\/p><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS \\u201cAS IS,\\u201d WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE \\u201cAS IS\\u201d CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.<\\/p><p>\\u00a0<\\/p><p><strong>Electronic Communication<\\/strong><\\/p><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.<\\/p><p>\\u00a0<\\/p><p><strong>Linked Third Party Sites<\\/strong><\\/p><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.<\\/p><p>\\u00a0<\\/p><p><strong>Prices; Orders<\\/strong><\\/p><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability<\\/strong><\\/p><p>evergreenwellness.com provides the Site (including all Content) \\u201cas is\\u201d without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).<\\/p><p>\\u00a0<\\/p><p><strong>Hold Harmless and Indemnity<\\/strong><\\/p><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and\\/or consequential), suits, judgments, litigation costs and attorneys\\u2019 fees, of every kind and nature.<\\/p><p>\\u00a0<\\/p><p><strong>Dispute Resolution<\\/strong><\\/p><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.<\\/p><p><em>\\u00a0<\\/em><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2101,1091,'_elementor_edit_mode','builder'),(2102,1091,'_wp_page_template','default'),(2103,1091,'_elementor_template_type','post'),(2104,1091,'_elementor_version','2.5.14'),(2105,1091,'_elementor_data','[{\"id\":\"5dad9ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":977,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/horses-945388_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\":\"487844c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6713f25a\",\"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\":\"41cb3358\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nTraditional Chinese Medicine <br> and Stroke Rehabilitation\",\"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\":\"6c4b1056\",\"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\":\"3a0e353b\",\"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\":\"24bc5464\",\"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\":\"72cebd46\",\"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\":\"6f466c08\",\"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\":\"2fd016b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"944e086\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43116a8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ae6346\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04d6777\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a88e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nTraditional Chinese Medicine and Stroke Rehabilitation\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8b0d7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07327e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"227b269\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2fff23\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"41b1ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ec7181c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In addition being the third leading cause of death in the U.S., strokes are a leading cause of serious long-term disability.\\u00a0 About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled.\\u00a0 That number is expected to surpass the 1 million mark by 2050.\\u00a0 Significant physical, cognitive and psychological disabilities create major medical and social problems.\\u00a0<\\/p><p>In the current medical climate, the type and amount of stroke rehabilitation a patient receives is many times dictated by insurance plan offerings, yet medical practitioners are unanimous in agreement that a comprehensive rehabilitative therapy program\\u00a0 provides the best chance of meaningful recovery.\\u00a0 Of the 72 million Americans that have experienced serious injury, stroke or other disabling disease more that 60 percent never receive proper rehabilitation.\\u00a0 Yet, the earlier rehabilitation begins the more likely the patient is to regain the ability to function and return to a productive satisfying life.<\\/p><p>A stroke or cerebral vascular accidents (CVA) occur when a blood clot blocks a blood vessel or artery, or when a blood vessel breaks, interrupting blood flow to an area of the brain.\\u00a0 When a patient survives a stroke, all but a small percentage of them suffer from limitations in functional activities and subsequently do not become self-sufficient. We called it post-stroke syndrome.<\\/p><p>According to National Stroke Association, there are nearly 4 million people in the United States who have survived a stroke and are living with the after-effects. These numbers do not reflect the scope of the problem and do not count the millions of husbands, wives and children who live with and care for stroke survivors and who are, because of their own altered lifestyle, greatly affected by stroke.\\u00a0 In the United States, Post-stroke patients normally receive physical therapy<em>\\u00a0(PT)<\\/em>, Occupational therapy\\u00a0<em>(OT)<\\/em>\\u00a0and\\/or Speech language pathology for their rehabilitation.<\\/p><p>From Traditional Chinese Medicine (TCM) aspect, stroke caused by imbalance of\\u00a0<em>Yin\\u00a0<\\/em>and<em>\\u00a0Yang\\u00a0<\\/em>of inner organ and imbalance\\u00a0<em>Qi<\\/em>\\u00a0and\\u00a0<em>blood.<\\/em>\\u00a0The classification of\\u00a0<em>Synopsis of the Golden Chamber,\\u00a0<\\/em>wrote by Zhang Zhongjing, a famous TCM doctor in the Eastern Han dynasty (300 AD), had described the symptoms and treatment method. Now many studies have been done for post-stroke patients to speed rehabilitation using TCM therapy such as Acupuncture and Moxibustion, Herbs, Tuina Anmo (Chinese Massage) and Qigong (Energy Healing). Following is a further explain these therapies and some results of studies that have been performed to date.<\\/p><p><strong><em>Acupuncture and Moxibustion Therapy<\\/em><\\/strong><\\/p><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>The study done by Chen YM, et al shows that for 108 cases of hemiplegia or paralysis of on eside of the body caused by stroke, early treatment (first three weeks) with acupuncture produces better result than the treatment initiated three weeks after stroke. The improvement rate is from 90.9% down to 71.4%.<\\/p><p>Another study done by Kjendahl A, et al, Sunnaas Rehabilitation Hospital, Nesoddtangen, Norway shows that the acupuncture group improved significantly more than the controls, both during the treatment period of six weeks, and even more during the following year, both according to MAS, ADL, NHP and the social situation.<\\/p><p><strong><em>Herbal Therapy<\\/em><\\/strong><\\/p><p>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China.<\\/p><p>The study done by Lin Faching, et al, Department of Neurology, Renji Hospital, Shanghai, China described: Of the 78 cased for which clinical signs were evaluated: vertigo was found in 43 cases (55.12%), nystagmus (rapid rhythmic repetitious involuntary (unwilled) horizontal, vertical or rotary eye movements) in 34 cases (43.59%), mental disorders ( including confusion, depression, disorientation, conscious blur and insomnia) in 14 cases (17.94%), motor paralysis in 28 cases (35.89 %), ataxia (Wobbliness. Lack of coordination and unsteadiness due to the brain\\u2019s failure to regulate the body\\u2019s posture and regulate the strength and direction of limb movements) in 18 cases (23.07%), sensory disorders in 12 cases (15.38%), and dyslalia (an articulatory disorder in which a patient does not pronounce the sounds clearly or they replace one sound for another) in 7 cases (8.97%). When the herb formulas were used in treatment, of the entire case sample, 97.44% reported an improvement in some symptoms and a satisfactory result was judged to be 74.36%. No obvious side effects were noted as a result of treatment when using the herbs.<\\/p><p><strong><em>Tuina Anmo (Chinese Massage) Therapy<\\/em><\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>The article wrote by Li Yangao, et al, The Bethune International Peace Hospital, China, mentioned that 44 patients had suffered from hemiplegia or paralysis of one side of the body due to stroke. The average age of patients was 54. The disease course had lasted from one month to three years, with an average of 105 days. They were treated by Tuina\\u00a0 Anmo therapy from 10 to 60 times, with an average of 24 times. The result is: 18 out of 44 cases improved obviously, 18 improved, 8 cases failed, the effective rate was 81.82%.<\\/p><p><strong><em>Qigong (Energy Healing) Therapy<\\/em><\\/strong><\\/p><p>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breath, exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose.<\\/p><p>According to\\u00a0<em>147 cases of hemiplegia due to cerebrovascular accident treated by Qigong<\\/em>, Zhang Xia, presented on the Fourth World Conference on Medical Qigong, the total effective rate is 93.2% in 12 weeks treatment period.<\\/p><p><strong><em>Integrative Therapy of Traditional Chinese and Western Medicine<\\/em><\\/strong><\\/p><p>It includes Acupuncture and Moxibustion Therapy, Herbal Therapy, Tuina Anmo (Chinese Massage) Therapy, Qigong Therapy, Physical Therapy, Occupational Therapy and speech training.<\\/p><p>Wang Shaoqin et al, Beijing Rehabilitation Hospital, China, report their study on 100 cases of post-stroke patients treated by an integrated therapy of Traditional Chinese and Western medicine. After the 3 months treatment, the total effective rate was 83%. For post-cerebral hemorrhage cases the total effective rate was 89.29%, for post-cerebral infarction was 80.56%. The overall effective rate of 67 cases under age 60 was 91.04, of over age 60 was 66.67%. There was extremely significant difference between these two age groups. The total effective rate of 50 cases whose treatment started within 6 months after stroke was 94%; the effective rate of 50 cases whose treatment started within 6 months later stroke was 72%. There was extremely significant difference between these two age groups, too.<\\/p><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for stroke and other conditions is provided at the Evergreen Wellness Center.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0c254e\",\"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\":\"600d034\",\"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\":\"087f197\",\"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\":\"cae6614\",\"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\":\"cf5b9e1\",\"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}]'),(2106,1091,'_elementor_css','a:4:{s:4:\"time\";i:1555724189;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2107,1092,'_elementor_edit_mode','builder'),(2108,1092,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(2109,1092,'_elementor_template_type','post'),(2110,1092,'_elementor_version','2.5.14'),(2111,1092,'_elementor_data','[{\"id\":\"a07b826\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f042a54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6dd6b62\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a375ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terms\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5467354\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fb6778a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"975ff2b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2985390\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>TERMS OF USE<\\/strong>\\u00a0These Terms of Use (\\u201cTerms\\u201d) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Changes in Terms<\\/strong><\\/li><\\/ol><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Termination<\\/strong><\\/li><\\/ol><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Compliance with Laws<\\/strong><\\/li><\\/ol><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Content<\\/strong><\\/li><\\/ol><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the \\u201cContent\\u201d. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and\\/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com\\u2019s intellectual property may not be used without evergreenwellness.com\\u2019s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Product Reviews<\\/strong><\\/li><\\/ol><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer\\u2019s experience is what an average or typical customer may expect to achieve.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Accounts<\\/strong><\\/li><\\/ol><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person\\u2019s username, password or other account information, or another person\\u2019s name, likeness, voice, image or photograph.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Disclaimer and Limitation of Liability as to the\\u00a0evergreenwellness.com<\\/strong>\\u00a0<strong>Site and Content<\\/strong><\\/li><\\/ol><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS \\u201cAS IS,\\u201d WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE \\u201cAS IS\\u201d CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Electronic Communication<\\/strong><\\/li><\\/ol><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Linked Third Party Sites<\\/strong><\\/li><\\/ol><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Prices; Orders<\\/strong><\\/li><\\/ol><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Disclaimer and Limitation of Liability<\\/strong><\\/li><\\/ol><p>evergreenwellness.com provides the Site (including all Content) \\u201cas is\\u201d without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).<\\/p><p>\\u00a0<\\/p><ol><li><strong>Hold Harmless and Indemnity<\\/strong><\\/li><\\/ol><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and\\/or consequential), suits, judgments, litigation costs and attorneys\\u2019 fees, of every kind and nature.<\\/p><p>\\u00a0<\\/p><ol><li><strong>Dispute Resolution<\\/strong><\\/li><\\/ol><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.<\\/p><p><em>\\u00a0<\\/em><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2113,1093,'_wp_attached_file','2019/04/ConsentFormGet_WithFooter.pdf'),(2134,1097,'_elementor_edit_mode','builder'),(2135,1097,'_wp_page_template','default'),(2136,1097,'_elementor_template_type','post'),(2137,1097,'_elementor_version','2.5.14'),(2138,1097,'_elementor_data','[{\"id\":\"a07b826\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f042a54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6dd6b62\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a375ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terms\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a12307\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb3432\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"da5fe94\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bc6f68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a28c81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>TERMS OF USE<\\/strong>\\u00a0These Terms of Use (\\u201cTerms\\u201d) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.<\\/p><p>\\u00a0<\\/p><p><strong>Changes in Terms<\\/strong><\\/p><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.<\\/p><p>\\u00a0<\\/p><p><strong>Termination<\\/strong><\\/p><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.<\\/p><p>\\u00a0<\\/p><p><strong>Compliance with Laws<\\/strong><\\/p><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.<\\/p><p>\\u00a0<\\/p><p><strong>Content<\\/strong><\\/p><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the \\u201cContent\\u201d. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and\\/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com\\u2019s intellectual property may not be used without evergreenwellness.com\\u2019s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.<\\/p><p>\\u00a0<\\/p><p><strong>Product Reviews<\\/strong><\\/p><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer\\u2019s experience is what an average or typical customer may expect to achieve.<\\/p><p>\\u00a0<\\/p><p><strong>Accounts<\\/strong><\\/p><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person\\u2019s username, password or other account information, or another person\\u2019s name, likeness, voice, image or photograph.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability as to the\\u00a0evergreenwellness.com<\\/strong>\\u00a0<strong>Site and Content<\\/strong><\\/p><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS \\u201cAS IS,\\u201d WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE \\u201cAS IS\\u201d CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.<\\/p><p>\\u00a0<\\/p><p><strong>Electronic Communication<\\/strong><\\/p><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.<\\/p><p>\\u00a0<\\/p><p><strong>Linked Third Party Sites<\\/strong><\\/p><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.<\\/p><p>\\u00a0<\\/p><p><strong>Prices; Orders<\\/strong><\\/p><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability<\\/strong><\\/p><p>evergreenwellness.com provides the Site (including all Content) \\u201cas is\\u201d without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).<\\/p><p>\\u00a0<\\/p><p><strong>Hold Harmless and Indemnity<\\/strong><\\/p><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and\\/or consequential), suits, judgments, litigation costs and attorneys\\u2019 fees, of every kind and nature.<\\/p><p>\\u00a0<\\/p><p><strong>Dispute Resolution<\\/strong><\\/p><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.<\\/p><p><em>\\u00a0<\\/em><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2114,1094,'_elementor_edit_mode','builder'),(2115,1094,'_wp_page_template','default'),(2116,1094,'_elementor_template_type','post'),(2117,1094,'_elementor_version','2.5.14'),(2118,1094,'_elementor_data','[{\"id\":\"24c17d93\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"5fdf71fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cab319\",\"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\":\"5bf3d10d\",\"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\":\"65db8a8e\",\"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\":\"536e634b\",\"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\":\"631fe874\",\"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\":\"c94771b\",\"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\":\"55df845d\",\"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\":\"a07b826\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f042a54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6dd6b62\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a375ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terms\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a12307\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb3432\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"da5fe94\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bc6f68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a28c81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>TERMS OF USE<\\/strong>\\u00a0These Terms of Use (\\u201cTerms\\u201d) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.<\\/p><p>\\u00a0<\\/p><p><strong>Changes in Terms<\\/strong><\\/p><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.<\\/p><p>\\u00a0<\\/p><p><strong>Termination<\\/strong><\\/p><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.<\\/p><p>\\u00a0<\\/p><p><strong>Compliance with Laws<\\/strong><\\/p><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.<\\/p><p>\\u00a0<\\/p><p><strong>Content<\\/strong><\\/p><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the \\u201cContent\\u201d. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and\\/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com\\u2019s intellectual property may not be used without evergreenwellness.com\\u2019s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.<\\/p><p>\\u00a0<\\/p><p><strong>Product Reviews<\\/strong><\\/p><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer\\u2019s experience is what an average or typical customer may expect to achieve.<\\/p><p>\\u00a0<\\/p><p><strong>Accounts<\\/strong><\\/p><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person\\u2019s username, password or other account information, or another person\\u2019s name, likeness, voice, image or photograph.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability as to the\\u00a0evergreenwellness.com<\\/strong>\\u00a0<strong>Site and Content<\\/strong><\\/p><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS \\u201cAS IS,\\u201d WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE \\u201cAS IS\\u201d CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.<\\/p><p>\\u00a0<\\/p><p><strong>Electronic Communication<\\/strong><\\/p><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.<\\/p><p>\\u00a0<\\/p><p><strong>Linked Third Party Sites<\\/strong><\\/p><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.<\\/p><p>\\u00a0<\\/p><p><strong>Prices; Orders<\\/strong><\\/p><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability<\\/strong><\\/p><p>evergreenwellness.com provides the Site (including all Content) \\u201cas is\\u201d without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).<\\/p><p>\\u00a0<\\/p><p><strong>Hold Harmless and Indemnity<\\/strong><\\/p><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and\\/or consequential), suits, judgments, litigation costs and attorneys\\u2019 fees, of every kind and nature.<\\/p><p>\\u00a0<\\/p><p><strong>Dispute Resolution<\\/strong><\\/p><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.<\\/p><p><em>\\u00a0<\\/em><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2119,1095,'_elementor_edit_mode','builder'),(2120,1095,'_wp_page_template','default'),(2121,1095,'_elementor_template_type','post'),(2122,1095,'_elementor_version','2.5.14'),(2123,1095,'_elementor_data','[{\"id\":\"24c17d93\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_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\":\"5fdf71fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cab319\",\"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\":\"5bf3d10d\",\"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\":\"65db8a8e\",\"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\":\"536e634b\",\"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\":\"631fe874\",\"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\":\"c94771b\",\"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\":\"55df845d\",\"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\":\"a07b826\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f042a54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6dd6b62\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a375ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terms\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a12307\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb3432\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"da5fe94\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bc6f68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a28c81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>TERMS OF USE<\\/strong>\\u00a0These Terms of Use (\\u201cTerms\\u201d) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.<\\/p><p>\\u00a0<\\/p><p><strong>Changes in Terms<\\/strong><\\/p><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.<\\/p><p>\\u00a0<\\/p><p><strong>Termination<\\/strong><\\/p><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.<\\/p><p>\\u00a0<\\/p><p><strong>Compliance with Laws<\\/strong><\\/p><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.<\\/p><p>\\u00a0<\\/p><p><strong>Content<\\/strong><\\/p><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the \\u201cContent\\u201d. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and\\/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com\\u2019s intellectual property may not be used without evergreenwellness.com\\u2019s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.<\\/p><p>\\u00a0<\\/p><p><strong>Product Reviews<\\/strong><\\/p><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer\\u2019s experience is what an average or typical customer may expect to achieve.<\\/p><p>\\u00a0<\\/p><p><strong>Accounts<\\/strong><\\/p><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person\\u2019s username, password or other account information, or another person\\u2019s name, likeness, voice, image or photograph.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability as to the\\u00a0evergreenwellness.com<\\/strong>\\u00a0<strong>Site and Content<\\/strong><\\/p><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS \\u201cAS IS,\\u201d WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE \\u201cAS IS\\u201d CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.<\\/p><p>\\u00a0<\\/p><p><strong>Electronic Communication<\\/strong><\\/p><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.<\\/p><p>\\u00a0<\\/p><p><strong>Linked Third Party Sites<\\/strong><\\/p><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.<\\/p><p>\\u00a0<\\/p><p><strong>Prices; Orders<\\/strong><\\/p><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability<\\/strong><\\/p><p>evergreenwellness.com provides the Site (including all Content) \\u201cas is\\u201d without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).<\\/p><p>\\u00a0<\\/p><p><strong>Hold Harmless and Indemnity<\\/strong><\\/p><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and\\/or consequential), suits, judgments, litigation costs and attorneys\\u2019 fees, of every kind and nature.<\\/p><p>\\u00a0<\\/p><p><strong>Dispute Resolution<\\/strong><\\/p><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.<\\/p><p><em>\\u00a0<\\/em><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2140,1098,'_edit_lock','1555811465:1'),(2321,1131,'_elementor_edit_mode','builder'),(2125,1089,'neve_meta_container','full-width'),(2126,1089,'neve_meta_sidebar','full-width'),(2127,1089,'neve_meta_disable_title','on'),(2139,1097,'_elementor_css','a:4:{s:4:\"time\";i:1555802984;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2142,1098,'_edit_last','1'),(2143,1098,'neve_meta_container','full-width'),(2144,1098,'neve_meta_sidebar','full-width'),(2145,1098,'neve_meta_disable_title','on'),(2146,1098,'neve_meta_content_width','70'),(2147,1098,'_elementor_edit_mode','builder'),(2148,1098,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(2149,1098,'_elementor_template_type','post'),(2150,1098,'_elementor_version','2.5.14'),(2151,1098,'_elementor_data','[{\"id\":\"63f2ce8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0eed355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12334c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5c32f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2bd56e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9bcddc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Policy\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e93bac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3974718\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"de777aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e324cf\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"bfa4dce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"88906a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Who we are<\\/strong><\\/p><p>Our website address is: https:\\/\\/evergreenwellness.com\\/. We are dedicated to providing education and services in Chinese medicine.<\\/p><p><strong>What personal data we collect and why we collect it<\\/strong><\\/p><p><strong>Comments<\\/strong><\\/p><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor\\u2019s IP address and browser user agent string to help spam detection.<\\/p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here:\\u00a0<a href=\\\"https:\\/\\/automattic.com\\/privacy\\/\\\">https:\\/\\/automattic.com\\/privacy\\/<\\/a>. After approval of your comment, your profile picture is visible to the public in the context of your comment.<\\/p><p><strong>Media<\\/strong><\\/p><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.<\\/p><p><strong>Contact forms<\\/strong><\\/p><p>You can reach out to us if you have any questions or concerns on our contact page here:\\u00a0<a href=\\\"https:\\/\\/test.evergreenwellness.com\\/#contact\\\"><strong>https:\\/\\/evergreenwellness.com\\/contact\\/<\\/strong><\\/a><\\/p><p><strong>Cookies<\\/strong><\\/p><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.<\\/p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.<\\/p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \\u201cRemember Me\\u201d, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.<\\/p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.<\\/p><p>Embedded content from other websites<\\/p><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.<\\/p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.<\\/p><p>Who we share your data with<\\/p><p>We use PayPal to process your payments, so be sure to check out PayPal\\u2018s privacy policies here:<\\/p><p><strong><a href=\\\"https:\\/\\/www.paypal.com\\/us\\/webapps\\/mpp\\/ua\\/privacy-full\\\">https:\\/\\/www.paypal.com\\/us\\/webapps\\/mpp\\/ua\\/privacy-full<\\/a><\\/strong><\\/p><p><strong>How long we retain your data<\\/strong><\\/p><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.<\\/p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.<\\/p><p><strong>What rights you have over your data<\\/strong><\\/p><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.<\\/p><p><strong>Where we send your data<\\/strong><\\/p><p>Visitor comments may be checked through an automated spam detection service.<\\/p><p><strong>Your contact information<\\/strong><\\/p><p>We collect only the contact information you submit in the registration form such as your email and username. If you purchase a product or sign up for a program on our site that requires your phone number or address we may also collect that for those purposes as well.<\\/p><p>If you wish to review or for any of your data to be erased from\\u00a0evergreenwellness.com feel free to reach out and we can take care of that for you.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2152,1100,'_elementor_edit_mode','builder'),(2153,1100,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(2154,1100,'_elementor_template_type','post'),(2155,1100,'_elementor_version','2.5.14'),(2156,1100,'_elementor_data','[{\"id\":\"63f2ce8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0eed355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12334c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5c32f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2bd56e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9bcddc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Policy\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e93bac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3974718\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"de777aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e324cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bfa4dce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"88906a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Who we are<\\/strong><\\/p><p>Our website address is: https:\\/\\/evergreenwellness.com\\/. We are dedicated to providing education and services in Chinese medicine.<\\/p><p><strong>What personal data we collect and why we collect it<\\/strong><\\/p><p><strong>Comments<\\/strong><\\/p><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor\\u2019s IP address and browser user agent string to help spam detection.<\\/p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here:\\u00a0<a href=\\\"https:\\/\\/automattic.com\\/privacy\\/\\\">https:\\/\\/automattic.com\\/privacy\\/<\\/a>. After approval of your comment, your profile picture is visible to the public in the context of your comment.<\\/p><p><strong>Media<\\/strong><\\/p><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.<\\/p><p><strong>Contact forms<\\/strong><\\/p><p>You can reach out to us if you have any questions or concerns on our contact page here:\\u00a0<a href=\\\"https:\\/\\/ibreathin.com\\/contact\\/\\\"><strong>https:\\/\\/evergreenwellness.com\\/contact\\/<\\/strong><\\/a><\\/p><p><strong>Cookies<\\/strong><\\/p><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.<\\/p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.<\\/p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \\u201cRemember Me\\u201d, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.<\\/p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.<\\/p><p>Embedded content from other websites<\\/p><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.<\\/p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.<\\/p><p>Who we share your data with<\\/p><p>We use PayPal to process your payments, so be sure to check out PayPal\\u2018s privacy policies here:<\\/p><p><strong><a href=\\\"https:\\/\\/www.paypal.com\\/us\\/webapps\\/mpp\\/ua\\/privacy-full\\\">https:\\/\\/www.paypal.com\\/us\\/webapps\\/mpp\\/ua\\/privacy-full<\\/a><\\/strong><\\/p><p>\\u00a0<\\/p><p><strong>How long we retain your data<\\/strong><\\/p><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.<\\/p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.<\\/p><p><strong>What rights you have over your data<\\/strong><\\/p><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.<\\/p><p><strong>Where we send your data<\\/strong><\\/p><p>Visitor comments may be checked through an automated spam detection service.<\\/p><p><strong>Your contact information<\\/strong><\\/p><p>We collect only the contact information you submit in the registration form such as your email and username. If you purchase a product or sign up for a program on our site that requires your phone number or address we may also collect that for those purposes as well.<\\/p><p>If you wish to review or for any of your data to be erased from\\u00a0evergreenwellness.com feel free to reach out and we can take care of that for you.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2164,1102,'_wp_trash_meta_status','publish'),(2165,1102,'_wp_trash_meta_time','1555807143'),(2158,1101,'_elementor_edit_mode','builder'),(2159,1101,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(2160,1101,'_elementor_template_type','post'),(2161,1101,'_elementor_version','2.5.14'),(2162,1101,'_elementor_data','[{\"id\":\"63f2ce8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0eed355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12334c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5c32f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2bd56e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9bcddc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Policy\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e93bac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3974718\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"de777aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e324cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bfa4dce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"88906a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Who we are<\\/strong><\\/p><p>Our website address is: https:\\/\\/evergreenwellness.com\\/. We are dedicated to providing education and services in Chinese medicine.<\\/p><p><strong>What personal data we collect and why we collect it<\\/strong><\\/p><p><strong>Comments<\\/strong><\\/p><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor\\u2019s IP address and browser user agent string to help spam detection.<\\/p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here:\\u00a0<a href=\\\"https:\\/\\/automattic.com\\/privacy\\/\\\">https:\\/\\/automattic.com\\/privacy\\/<\\/a>. After approval of your comment, your profile picture is visible to the public in the context of your comment.<\\/p><p><strong>Media<\\/strong><\\/p><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.<\\/p><p><strong>Contact forms<\\/strong><\\/p><p>You can reach out to us if you have any questions or concerns on our contact page here:\\u00a0<a href=\\\"https:\\/\\/ibreathin.com\\/contact\\/\\\"><strong>https:\\/\\/evergreenwellness.com\\/contact\\/<\\/strong><\\/a><\\/p><p><strong>Cookies<\\/strong><\\/p><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.<\\/p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.<\\/p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \\u201cRemember Me\\u201d, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.<\\/p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.<\\/p><p>Embedded content from other websites<\\/p><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.<\\/p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.<\\/p><p>Who we share your data with<\\/p><p>We use PayPal to process your payments, so be sure to check out PayPal\\u2018s privacy policies here:<\\/p><p><strong><a href=\\\"https:\\/\\/www.paypal.com\\/us\\/webapps\\/mpp\\/ua\\/privacy-full\\\">https:\\/\\/www.paypal.com\\/us\\/webapps\\/mpp\\/ua\\/privacy-full<\\/a><\\/strong><\\/p><p>\\u00a0<\\/p><p><strong>How long we retain your data<\\/strong><\\/p><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.<\\/p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.<\\/p><p><strong>What rights you have over your data<\\/strong><\\/p><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.<\\/p><p><strong>Where we send your data<\\/strong><\\/p><p>Visitor comments may be checked through an automated spam detection service.<\\/p><p><strong>Your contact information<\\/strong><\\/p><p>We collect only the contact information you submit in the registration form such as your email and username. If you purchase a product or sign up for a program on our site that requires your phone number or address we may also collect that for those purposes as well.<\\/p><p>If you wish to review or for any of your data to be erased from\\u00a0evergreenwellness.com feel free to reach out and we can take care of that for you.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2163,1101,'_elementor_css','a:4:{s:4:\"time\";i:1555803535;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2166,1103,'_edit_lock','1555807498:1'),(2235,1114,'_menu_item_target',''),(2210,1109,'_wp_trash_meta_status','publish'),(2175,1103,'_wp_trash_meta_status','publish'),(2176,1103,'_wp_trash_meta_time','1555807556'),(2233,1114,'_menu_item_object_id','1076'),(2232,1114,'_menu_item_menu_item_parent','0'),(2231,1114,'_menu_item_type','post_type'),(2230,1113,'_menu_item_url',''),(2229,1113,'_menu_item_xfn',''),(2228,1113,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2227,1113,'_menu_item_target',''),(2226,1113,'_menu_item_object','page'),(2225,1113,'_menu_item_object_id','1027'),(2224,1113,'_menu_item_menu_item_parent','0'),(2223,1113,'_menu_item_type','post_type'),(2222,1112,'_menu_item_url','https://test.evergreenwellness.com'),(2221,1112,'_menu_item_xfn',''),(2220,1112,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2219,1112,'_menu_item_target',''),(2218,1112,'_menu_item_object','custom'),(2217,1112,'_menu_item_object_id','1112'),(2216,1112,'_menu_item_menu_item_parent','0'),(2215,1112,'_menu_item_type','custom'),(2207,1108,'_wp_trash_meta_status','publish'),(2208,1108,'_wp_trash_meta_time','1555807859'),(2209,1109,'_edit_lock','1555808109:1'),(2260,1118,'_menu_item_object_id','1077'),(2261,1118,'_menu_item_object','page'),(2262,1118,'_menu_item_target',''),(2263,1118,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2264,1118,'_menu_item_xfn',''),(2265,1118,'_menu_item_url',''),(2266,1119,'_menu_item_type','post_type'),(2267,1119,'_menu_item_menu_item_parent','0'),(2268,1119,'_menu_item_object_id','1089'),(2269,1119,'_menu_item_object','page'),(2270,1119,'_menu_item_target',''),(2271,1119,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2272,1119,'_menu_item_xfn',''),(2273,1119,'_menu_item_url',''),(2274,1120,'_menu_item_type','post_type'),(2275,1120,'_menu_item_menu_item_parent','0'),(2276,1120,'_menu_item_object_id','1098'),(2277,1120,'_menu_item_object','page'),(2278,1120,'_menu_item_target',''),(2279,1120,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2280,1120,'_menu_item_xfn',''),(2281,1120,'_menu_item_url',''),(2282,1117,'_wp_trash_meta_status','publish'),(2283,1117,'_wp_trash_meta_time','1555808454'),(2284,1121,'_wp_trash_meta_status','publish'),(2285,1121,'_wp_trash_meta_time','1555808584'),(2286,1122,'_wp_trash_meta_status','publish'),(2287,1122,'_wp_trash_meta_time','1555808658'),(2288,1123,'_edit_lock','1555808718:1'),(2289,1123,'_wp_trash_meta_status','publish'),(2290,1123,'_wp_trash_meta_time','1555808744'),(2291,1124,'_edit_lock','1555809117:1'),(2292,1124,'_wp_trash_meta_status','publish'),(2293,1124,'_wp_trash_meta_time','1555809144'),(2294,1125,'_wp_trash_meta_status','publish'),(2295,1125,'_wp_trash_meta_time','1555809254'),(2296,1126,'_edit_lock','1555809508:1'),(2298,1126,'_wp_trash_meta_time','1555809554'),(2299,1127,'_wp_trash_meta_status','publish'),(2300,1127,'_wp_trash_meta_time','1555809664'),(2315,1130,'_elementor_edit_mode','builder'),(2316,1130,'_wp_page_template','default'),(2302,1128,'_elementor_edit_mode','builder'),(2303,1128,'_wp_page_template','default'),(2304,1128,'_elementor_template_type','post'),(2305,1128,'_elementor_version','2.5.14'),(2306,1128,'_elementor_data','[{\"id\":\"a07b826\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f042a54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6dd6b62\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a375ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terms\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a12307\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb3432\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"da5fe94\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#eaeaea\"},\"elements\":[{\"id\":\"4bc6f68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a28c81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>TERMS OF USE<\\/strong>\\u00a0These Terms of Use (\\u201cTerms\\u201d) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.<\\/p><p>\\u00a0<\\/p><p><strong>Changes in Terms<\\/strong><\\/p><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.<\\/p><p>\\u00a0<\\/p><p><strong>Termination<\\/strong><\\/p><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.<\\/p><p>\\u00a0<\\/p><p><strong>Compliance with Laws<\\/strong><\\/p><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.<\\/p><p>\\u00a0<\\/p><p><strong>Content<\\/strong><\\/p><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the \\u201cContent\\u201d. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and\\/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com\\u2019s intellectual property may not be used without evergreenwellness.com\\u2019s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.<\\/p><p>\\u00a0<\\/p><p><strong>Product Reviews<\\/strong><\\/p><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer\\u2019s experience is what an average or typical customer may expect to achieve.<\\/p><p>\\u00a0<\\/p><p><strong>Accounts<\\/strong><\\/p><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person\\u2019s username, password or other account information, or another person\\u2019s name, likeness, voice, image or photograph.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability as to the\\u00a0evergreenwellness.com<\\/strong>\\u00a0<strong>Site and Content<\\/strong><\\/p><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS \\u201cAS IS,\\u201d WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE \\u201cAS IS\\u201d CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.<\\/p><p>\\u00a0<\\/p><p><strong>Electronic Communication<\\/strong><\\/p><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.<\\/p><p>\\u00a0<\\/p><p><strong>Linked Third Party Sites<\\/strong><\\/p><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.<\\/p><p>\\u00a0<\\/p><p><strong>Prices; Orders<\\/strong><\\/p><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability<\\/strong><\\/p><p>evergreenwellness.com provides the Site (including all Content) \\u201cas is\\u201d without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).<\\/p><p>\\u00a0<\\/p><p><strong>Hold Harmless and Indemnity<\\/strong><\\/p><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and\\/or consequential), suits, judgments, litigation costs and attorneys\\u2019 fees, of every kind and nature.<\\/p><p>\\u00a0<\\/p><p><strong>Dispute Resolution<\\/strong><\\/p><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.<\\/p><p><em>\\u00a0<\\/em><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2307,1128,'_elementor_css','a:4:{s:4:\"time\";i:1555803109;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2309,1129,'_elementor_edit_mode','builder'),(2310,1129,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(2311,1129,'_elementor_template_type','post'),(2312,1129,'_elementor_version','2.5.14'),(2313,1129,'_elementor_data','[{\"id\":\"63f2ce8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0eed355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12334c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5c32f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2bd56e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9bcddc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Policy\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e93bac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3974718\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"de777aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e324cf\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"bfa4dce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"88906a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Who we are<\\/strong><\\/p><p>Our website address is: https:\\/\\/evergreenwellness.com\\/. We are dedicated to providing education and services in Chinese medicine.<\\/p><p><strong>What personal data we collect and why we collect it<\\/strong><\\/p><p><strong>Comments<\\/strong><\\/p><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor\\u2019s IP address and browser user agent string to help spam detection.<\\/p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here:\\u00a0<a href=\\\"https:\\/\\/automattic.com\\/privacy\\/\\\">https:\\/\\/automattic.com\\/privacy\\/<\\/a>. After approval of your comment, your profile picture is visible to the public in the context of your comment.<\\/p><p><strong>Media<\\/strong><\\/p><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.<\\/p><p><strong>Contact forms<\\/strong><\\/p><p>You can reach out to us if you have any questions or concerns on our contact page here:\\u00a0<a href=\\\"https:\\/\\/ibreathin.com\\/contact\\/\\\"><strong>https:\\/\\/evergreenwellness.com\\/contact\\/<\\/strong><\\/a><\\/p><p><strong>Cookies<\\/strong><\\/p><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.<\\/p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.<\\/p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \\u201cRemember Me\\u201d, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.<\\/p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.<\\/p><p>Embedded content from other websites<\\/p><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.<\\/p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.<\\/p><p>Who we share your data with<\\/p><p>We use PayPal to process your payments, so be sure to check out PayPal\\u2018s privacy policies here:<\\/p><p><strong><a href=\\\"https:\\/\\/www.paypal.com\\/us\\/webapps\\/mpp\\/ua\\/privacy-full\\\">https:\\/\\/www.paypal.com\\/us\\/webapps\\/mpp\\/ua\\/privacy-full<\\/a><\\/strong><\\/p><p>\\u00a0<\\/p><p><strong>How long we retain your data<\\/strong><\\/p><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.<\\/p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.<\\/p><p><strong>What rights you have over your data<\\/strong><\\/p><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.<\\/p><p><strong>Where we send your data<\\/strong><\\/p><p>Visitor comments may be checked through an automated spam detection service.<\\/p><p><strong>Your contact information<\\/strong><\\/p><p>We collect only the contact information you submit in the registration form such as your email and username. If you purchase a product or sign up for a program on our site that requires your phone number or address we may also collect that for those purposes as well.<\\/p><p>If you wish to review or for any of your data to be erased from\\u00a0evergreenwellness.com feel free to reach out and we can take care of that for you.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2314,1129,'_elementor_css','a:4:{s:4:\"time\";i:1555809708;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2317,1130,'_elementor_template_type','post'),(2318,1130,'_elementor_version','2.5.14'),(2319,1130,'_elementor_data','[{\"id\":\"a07b826\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f042a54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6dd6b62\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a375ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terms\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a12307\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9fb3432\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"da5fe94\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"4bc6f68\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a28c81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>TERMS OF USE<\\/strong>\\u00a0These Terms of Use (\\u201cTerms\\u201d) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.<\\/p><p>\\u00a0<\\/p><p><strong>Changes in Terms<\\/strong><\\/p><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.<\\/p><p>\\u00a0<\\/p><p><strong>Termination<\\/strong><\\/p><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.<\\/p><p>\\u00a0<\\/p><p><strong>Compliance with Laws<\\/strong><\\/p><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.<\\/p><p>\\u00a0<\\/p><p><strong>Content<\\/strong><\\/p><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the \\u201cContent\\u201d. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and\\/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com\\u2019s intellectual property may not be used without evergreenwellness.com\\u2019s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.<\\/p><p>\\u00a0<\\/p><p><strong>Product Reviews<\\/strong><\\/p><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer\\u2019s experience is what an average or typical customer may expect to achieve.<\\/p><p>\\u00a0<\\/p><p><strong>Accounts<\\/strong><\\/p><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person\\u2019s username, password or other account information, or another person\\u2019s name, likeness, voice, image or photograph.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability as to the\\u00a0evergreenwellness.com<\\/strong>\\u00a0<strong>Site and Content<\\/strong><\\/p><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS \\u201cAS IS,\\u201d WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE \\u201cAS IS\\u201d CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.<\\/p><p>\\u00a0<\\/p><p><strong>Electronic Communication<\\/strong><\\/p><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.<\\/p><p>\\u00a0<\\/p><p><strong>Linked Third Party Sites<\\/strong><\\/p><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.<\\/p><p>\\u00a0<\\/p><p><strong>Prices; Orders<\\/strong><\\/p><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.<\\/p><p>\\u00a0<\\/p><p><strong>Disclaimer and Limitation of Liability<\\/strong><\\/p><p>evergreenwellness.com provides the Site (including all Content) \\u201cas is\\u201d without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).<\\/p><p>\\u00a0<\\/p><p><strong>Hold Harmless and Indemnity<\\/strong><\\/p><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and\\/or consequential), suits, judgments, litigation costs and attorneys\\u2019 fees, of every kind and nature.<\\/p><p>\\u00a0<\\/p><p><strong>Dispute Resolution<\\/strong><\\/p><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.<\\/p><p><em>\\u00a0<\\/em><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2320,1130,'_elementor_css','a:4:{s:4:\"time\";i:1555809907;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2322,1131,'_wp_page_template','default'),(2323,1131,'_elementor_template_type','post'),(2324,1131,'_elementor_version','2.5.14'),(2325,1131,'_elementor_data','[{\"id\":\"26de0d99\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1029,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/baby-2032303_1920-1024x683.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\":\"6b1f8cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"441fae64\",\"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\":\"56d4b6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Traditional Chinese Medicine and Infertility\\n\",\"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\":\"14360630\",\"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\":\"98b1f50\",\"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\":\"692620ea\",\"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\":\"760a7b87\",\"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\":\"2212e09e\",\"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\":\"2e9f2ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d89e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7eab3f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"959db52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2d52f05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"04e4856\",\"elType\":\"widget\",\"settings\":{\"title\":\"Traditional Chinese Medicine and Infertility\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e57267\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e77972b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"face210\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8581d5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"2a74470\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9b9c56c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.\\u00a0 Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.\\u00a0 The body is an organic whole and its functions are interconnected.\\u00a0 The meridian system, which allows vital energy to flow, links the body as a whole.\\u00a0 The TCM practitioner will treat patients with therapies from four main categories:\\u00a0 Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing).\\u00a0<\\/p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.\\u00a0 Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques.\\u00a0<\\/p><p><strong>Treating Infertility<\\/strong><\\/p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.\\u00a0 Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.\\u00a0 For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.<\\/p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.\\u00a0 This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.\\u00a0 Additionally, most contemporary medical treatments involve the use of numerous drugs.\\u00a0 The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.<\\/p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple\\u2019s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).\\u00a0 In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.\\u00a0 One of the groups received TCM treatments before and after implantation.\\u00a0 The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.<\\/p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:<\\/p><ul><li>TCM sees a personal as an integral mind\\/body organism and seeks to stimulate the body\\u2019s natural healing potential by treating root causes.<\\/li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.<\\/li><li>Traditional Chinese Medicine may be sued to strengthen and balance one\\u2019s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient\\u00a0 derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.\\u00a0 Pregnancy becomes easier to achieve and postpartum recuperation happens faster.\\u00a0<\\/li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.<\\/li><\\/ul><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments<\\/strong><\\/p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body\\u2019s systems regardless of age.\\u00a0 For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle.\\u00a0<\\/li><\\/ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body\\u2019s systems.<\\/p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40\\u2019s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.<\\/li><\\/ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.\\u00a0 There is not short cut to conception but in many cases, \\u201cturning back the clock\\u201d is possible.<\\/p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.\\u00a0 Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.\\u00a0 The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.<\\/li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.<\\/li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.\\u00a0 The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.<\\/li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.\\u00a0 Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.\\u00a0 However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.<\\/li><\\/ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for infertility and other conditions is provided at the Evergreen Wellness Center.\\u00a0 You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17808b2\",\"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\":\"adc0dc2\",\"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\":\"2905872\",\"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\":\"19bac93\",\"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\":\"8d38437\",\"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}]'),(2326,1131,'_thumbnail_id','1029'),(2327,1131,'_elementor_css','a:4:{s:4:\"time\";i:1555724190;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2329,1132,'_wp_trash_meta_status','publish'),(2330,1132,'_wp_trash_meta_time','1555810305'),(2331,1133,'_elementor_edit_mode','builder'),(2332,1133,'_wp_page_template','default'),(2333,1133,'_elementor_template_type','post'),(2334,1133,'_elementor_version','2.5.14'),(2335,1133,'_elementor_data','[{\"id\":\"45b8b783\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":978,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/castle-sponeck-2578523_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\":\"689e44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"509559ce\",\"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\":\"6c9c3de1\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Efficacy of Acupuncture for Stroke Rehabilitation\",\"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\":\"6394f87b\",\"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\":\"45ec186d\",\"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\":\"19d10b45\",\"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\":\"5a7765b6\",\"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\":\"2787c22\",\"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\":\"9d81abe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3dee40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1289d97\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b30f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7a6149c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"caab668\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cc301b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4cd7d0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"db81fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Qizhi Gao, Wichita, KS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1140ce3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"8eb41bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a5fd3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e7cc54f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>OBJECTIVE:<\\/strong>\\u00a0The purpose of this study was to determine the effects in the functional recovery of post stroke patients receiving multidisciplinary western rehabilitation and patients receiving acupuncture with electrical stimulation in addition to multidisciplinary western rehabilitation.<\\/p><p><strong>BACKGROUND:<\\/strong>\\u00a0Stroke is third leading cause of death in the U.S. and a leading cause of serious long-term disability. About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled. Physical, cognitive and psychological disabilities are major medical and social problems. Very little research in this area has been done in the United States.<\\/p><p><strong>DESIGN\\/METHODS:<\\/strong>\\u00a0The study was a 2:1 randomized study. The study group received classical acupuncture with electrical stimulation for 60 minutes in addition to their standard daily physical, occupational, and speech therapy.<\\/p><p><strong>Intervention(s):<\\/strong>\\u00a0All patients received 3 hours of therapy (physical, occupational and speech therapy) Monday through Friday and 1\\u00bd hours of therapy on weekends<strong>.\\u00a0<\\/strong>Those in the study group also received acupuncture with electrical stimulation for 60 minutes on weekdays.<\\/p><p><strong>Main Outcome Measure(s):<\\/strong>\\u00a0Motor function, mobility, and daily life activities were assessed at the time of admission, every 7 days during length of stay and at the time of discharge using the Functional Independence Measure (FIM) scale.<\\/p><p><strong>RESULTS:<\\/strong>\\u00a0Patients in the control group and the study group did not differ significantly in age, gender or stroke side. There were statistically significant improvements in discharge placement and total FIM score change in the study group.<\\/p><p><strong>CONCLUSIONS\\/RELEVANCE:<\\/strong>\\u00a0Acupuncture is an effective adjunct to standard rehabilitation for post stroke patients as demonstrated by the 48 point FIM score change in the study group vs. the 20-point FIM score change in the control group and disposition of 90% of patients returned to their home in the study group vs. 33% in the control group.<\\/p><p>Above paper was presented at the American Academy of Neurology 59th Annual Meeting on May 2, 2007<\\/p><p>Supported by: Wesley Medical Research Institutes, 3306 E. Central, Wichita, KS 67208, 316-686-7172, Wesley Rehabilitation Hospital.<br \\/>Category \\u2013 Cerebrovascular Disease<br \\/>SubCategory \\u2013 Clinical Aspects<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccfa0b2\",\"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\":\"b9222fb\",\"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\":\"46b99c6\",\"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\":\"14a8c9d\",\"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\":\"c2e0cd2\",\"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}]'),(2336,1133,'_thumbnail_id','974'),(2337,1133,'_elementor_css','a:4:{s:4:\"time\";i:1555724189;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2339,1134,'_elementor_edit_mode','builder'),(2340,1134,'_wp_page_template','default'),(2341,1134,'_elementor_template_type','post'),(2342,1134,'_elementor_version','2.5.14'),(2343,1134,'_elementor_data','[{\"id\":\"4ae6470a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":1006,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/road-1072823_1280.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\":\"2ed92e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8ad8f\",\"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\":\"7a5d346e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese 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\":\"11f6caac\",\"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\":\"78d1636c\",\"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\":\"2c42aefe\",\"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\":\"2a6b2919\",\"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\":\"5c8fe78c\",\"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\":\"857a747\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9817be7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c91563a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7abf7f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"613544f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcbf5ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\\n\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af698cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dec341\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8d1cfc7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb83cb3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"dda2cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b6e36f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy.<\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"707a0d6\",\"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\":\"6fd13d4\",\"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\":\"fa612fc\",\"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\":\"3b433b5\",\"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\":\"cf7ca21\",\"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}]'),(2344,1134,'_elementor_css','a:4:{s:4:\"time\";i:1555724189;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2349,1089,'_elementor_css','a:4:{s:4:\"time\";i:1555811194;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2357,1098,'_elementor_css','a:4:{s:4:\"time\";i:1555811477;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2351,1136,'_elementor_edit_mode','builder'),(2352,1136,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(2353,1136,'_elementor_template_type','post'),(2354,1136,'_elementor_version','2.5.14'),(2355,1136,'_elementor_data','[{\"id\":\"63f2ce8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0eed355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12334c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5c32f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2bd56e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9bcddc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Policy\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e93bac\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3974718\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"de777aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e324cf\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"bfa4dce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"88906a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Who we are<\\/strong><\\/p><p>Our website address is: https:\\/\\/evergreenwellness.com\\/. We are dedicated to providing education and services in Chinese medicine.<\\/p><p><strong>What personal data we collect and why we collect it<\\/strong><\\/p><p><strong>Comments<\\/strong><\\/p><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor\\u2019s IP address and browser user agent string to help spam detection.<\\/p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here:\\u00a0<a href=\\\"https:\\/\\/automattic.com\\/privacy\\/\\\">https:\\/\\/automattic.com\\/privacy\\/<\\/a>. After approval of your comment, your profile picture is visible to the public in the context of your comment.<\\/p><p><strong>Media<\\/strong><\\/p><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.<\\/p><p><strong>Contact forms<\\/strong><\\/p><p>You can reach out to us if you have any questions or concerns on our contact page here:\\u00a0<a href=\\\"https:\\/\\/test.evergreenwellness.com\\/#contact\\\"><strong>https:\\/\\/evergreenwellness.com\\/contact\\/<\\/strong><\\/a><\\/p><p><strong>Cookies<\\/strong><\\/p><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.<\\/p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.<\\/p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \\u201cRemember Me\\u201d, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.<\\/p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.<\\/p><p>Embedded content from other websites<\\/p><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.<\\/p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.<\\/p><p>Who we share your data with<\\/p><p>We use PayPal to process your payments, so be sure to check out PayPal\\u2018s privacy policies here:<\\/p><p><strong><a href=\\\"https:\\/\\/www.paypal.com\\/us\\/webapps\\/mpp\\/ua\\/privacy-full\\\">https:\\/\\/www.paypal.com\\/us\\/webapps\\/mpp\\/ua\\/privacy-full<\\/a><\\/strong><\\/p><p><strong>How long we retain your data<\\/strong><\\/p><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.<\\/p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.<\\/p><p><strong>What rights you have over your data<\\/strong><\\/p><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.<\\/p><p><strong>Where we send your data<\\/strong><\\/p><p>Visitor comments may be checked through an automated spam detection service.<\\/p><p><strong>Your contact information<\\/strong><\\/p><p>We collect only the contact information you submit in the registration form such as your email and username. If you purchase a product or sign up for a program on our site that requires your phone number or address we may also collect that for those purposes as well.<\\/p><p>If you wish to review or for any of your data to be erased from\\u00a0evergreenwellness.com feel free to reach out and we can take care of that for you.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2356,1136,'_elementor_css','a:4:{s:4:\"time\";i:1555811207;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2358,1137,'_elementor_edit_mode','builder'),(2359,1137,'_wp_page_template','default'),(2360,1137,'_elementor_template_type','post'),(2361,1137,'_elementor_version','2.5.14'),(2362,1137,'_elementor_data','[{\"id\":\"52817f92\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":972,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/holiday-house-177401_1280.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\":\"7ec56c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"58b22b01\",\"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\":\"5c622b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction to Traditional Chinese Medicine <br> \\nHolistic Concept, Dynamic View and Natural Therapies\",\"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\":\"389ffead\",\"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\":\"68806146\",\"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\":\"7c0fd725\",\"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\":\"69a174ae\",\"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\":\"2b5ee5e9\",\"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\":\"045ed62\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9108bd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c17abea\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1b4e64\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"22a8834\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"aa02a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIntroduction to Traditional Chinese Medicine <br> <br>\\nHolistic Concept, Dynamic View and Natural Therapies\",\"align\":\"center\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"246d6b5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb8ef4a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"0b00259\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"89e1a57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d13f7d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>I. The Holistic Concept<\\/p><p>In TCM, the holistic concept includes integrity of the body and it\\u2019s relationship with the natural world.<\\/p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.\\u00a0 The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.<\\/p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.\\u00a0 TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.\\u00a0<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. \\u2014\\u00a0<\\/em>As stated in<em>\\u00a0Plain Questions,\\u00a0<\\/em>a Chinese medicine book published about 2000 years ago.<em>\\u00a0\\u00a0<\\/em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.<\\/p><p><strong>II. Dynamic View<\\/strong><\\/p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.\\u00a0\\u00a0<strong>As a pathological generalization of disease in its certain stage which is called\\u00a0<u>syndromes<\\/u>\\u00a0in TCM.\\u00a0<u>Syndromes<\\/u>\\u00a0reflect the law and nature of a disease thus serving as a basis for TCM treatment<\\/strong>. Therefore, they differ from symptoms.\\u00a0 For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob\\/gyn concerning her scanty menstruation and irregular menstrual cycle.<\\/p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient\\u2019s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.<\\/p><p>The reason for the patient\\u2019s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.<\\/p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.<\\/p><p>\\u00a0From the example mentioned above, the TCM physician may provide\\u00a0<em>the same treatment for different diseases<\\/em>\\u00a0such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases<\\/em>\\u00a0is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.<\\/p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).<\\/p><p><strong>III. Natural Therapies<\\/strong><\\/p><p>\\u00a0TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).<\\/p><ol><li><strong>Acupuncture and Moxibustion<\\/strong><\\/li><\\/ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.\\u00a0 Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.<\\/p><ol start=\\\"2\\\"><li><strong>Herbal Medicine<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.<\\/p><ol start=\\\"3\\\"><li><strong>Tuina Anmo -Chinese Massage<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><ol start=\\\"4\\\"><li><strong>Qigong<\\/strong><\\/li><\\/ol><p><strong>\\u00a0<\\/strong>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.<\\/p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.<\\/p><p>\\u00a0No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.<\\/p><p>\\u00a0If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9654fd\",\"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\":\"31a1634\",\"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\":\"ff50e26\",\"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\":\"c3d81c1\",\"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\":\"b0e6f31\",\"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}]'),(2363,1137,'_elementor_css','a:4:{s:4:\"time\";i:1555724188;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2366,1138,'_elementor_template_type','post'),(2367,1138,'_elementor_version','2.5.14'),(2368,1138,'_elementor_data','[{\"id\":\"5dad9ac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":977,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/horses-945388_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\":\"487844c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6713f25a\",\"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\":\"41cb3358\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nTraditional Chinese Medicine <br> and Stroke Rehabilitation\",\"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\":\"6c4b1056\",\"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\":\"3a0e353b\",\"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\":\"24bc5464\",\"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\":\"72cebd46\",\"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\":\"6f466c08\",\"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\":\"2fd016b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"944e086\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43116a8\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ae6346\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04d6777\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a88e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nTraditional Chinese Medicine and Stroke Rehabilitation\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8b0d7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07327e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"227b269\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2fff23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"41b1ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ec7181c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In addition being the third leading cause of death in the U.S., strokes are a leading cause of serious long-term disability.\\u00a0 About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled.\\u00a0 That number is expected to surpass the 1 million mark by 2050.\\u00a0 Significant physical, cognitive and psychological disabilities create major medical and social problems.\\u00a0<\\/p><p>In the current medical climate, the type and amount of stroke rehabilitation a patient receives is many times dictated by insurance plan offerings, yet medical practitioners are unanimous in agreement that a comprehensive rehabilitative therapy program\\u00a0 provides the best chance of meaningful recovery.\\u00a0 Of the 72 million Americans that have experienced serious injury, stroke or other disabling disease more that 60 percent never receive proper rehabilitation.\\u00a0 Yet, the earlier rehabilitation begins the more likely the patient is to regain the ability to function and return to a productive satisfying life.<\\/p><p>A stroke or cerebral vascular accidents (CVA) occur when a blood clot blocks a blood vessel or artery, or when a blood vessel breaks, interrupting blood flow to an area of the brain.\\u00a0 When a patient survives a stroke, all but a small percentage of them suffer from limitations in functional activities and subsequently do not become self-sufficient. We called it post-stroke syndrome.<\\/p><p>According to National Stroke Association, there are nearly 4 million people in the United States who have survived a stroke and are living with the after-effects. These numbers do not reflect the scope of the problem and do not count the millions of husbands, wives and children who live with and care for stroke survivors and who are, because of their own altered lifestyle, greatly affected by stroke.\\u00a0 In the United States, Post-stroke patients normally receive physical therapy<em>\\u00a0(PT)<\\/em>, Occupational therapy\\u00a0<em>(OT)<\\/em>\\u00a0and\\/or Speech language pathology for their rehabilitation.<\\/p><p>From Traditional Chinese Medicine (TCM) aspect, stroke caused by imbalance of\\u00a0<em>Yin\\u00a0<\\/em>and<em>\\u00a0Yang\\u00a0<\\/em>of inner organ and imbalance\\u00a0<em>Qi<\\/em>\\u00a0and\\u00a0<em>blood.<\\/em>\\u00a0The classification of\\u00a0<em>Synopsis of the Golden Chamber,\\u00a0<\\/em>wrote by Zhang Zhongjing, a famous TCM doctor in the Eastern Han dynasty (300 AD), had described the symptoms and treatment method. Now many studies have been done for post-stroke patients to speed rehabilitation using TCM therapy such as Acupuncture and Moxibustion, Herbs, Tuina Anmo (Chinese Massage) and Qigong (Energy Healing). Following is a further explain these therapies and some results of studies that have been performed to date.<\\/p><p><strong><em>Acupuncture and Moxibustion Therapy<\\/em><\\/strong><\\/p><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient\\u2019s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.<\\/p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly\\u00a0<em>moxa-wool<\\/em>\\u00a0in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.<\\/p><p>The study done by Chen YM, et al shows that for 108 cases of hemiplegia or paralysis of on eside of the body caused by stroke, early treatment (first three weeks) with acupuncture produces better result than the treatment initiated three weeks after stroke. The improvement rate is from 90.9% down to 71.4%.<\\/p><p>Another study done by Kjendahl A, et al, Sunnaas Rehabilitation Hospital, Nesoddtangen, Norway shows that the acupuncture group improved significantly more than the controls, both during the treatment period of six weeks, and even more during the following year, both according to MAS, ADL, NHP and the social situation.<\\/p><p><strong><em>Herbal Therapy<\\/em><\\/strong><\\/p><p>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China.<\\/p><p>The study done by Lin Faching, et al, Department of Neurology, Renji Hospital, Shanghai, China described: Of the 78 cased for which clinical signs were evaluated: vertigo was found in 43 cases (55.12%), nystagmus (rapid rhythmic repetitious involuntary (unwilled) horizontal, vertical or rotary eye movements) in 34 cases (43.59%), mental disorders ( including confusion, depression, disorientation, conscious blur and insomnia) in 14 cases (17.94%), motor paralysis in 28 cases (35.89 %), ataxia (Wobbliness. Lack of coordination and unsteadiness due to the brain\\u2019s failure to regulate the body\\u2019s posture and regulate the strength and direction of limb movements) in 18 cases (23.07%), sensory disorders in 12 cases (15.38%), and dyslalia (an articulatory disorder in which a patient does not pronounce the sounds clearly or they replace one sound for another) in 7 cases (8.97%). When the herb formulas were used in treatment, of the entire case sample, 97.44% reported an improvement in some symptoms and a satisfactory result was judged to be 74.36%. No obvious side effects were noted as a result of treatment when using the herbs.<\\/p><p><strong><em>Tuina Anmo (Chinese Massage) Therapy<\\/em><\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>The article wrote by Li Yangao, et al, The Bethune International Peace Hospital, China, mentioned that 44 patients had suffered from hemiplegia or paralysis of one side of the body due to stroke. The average age of patients was 54. The disease course had lasted from one month to three years, with an average of 105 days. They were treated by Tuina\\u00a0 Anmo therapy from 10 to 60 times, with an average of 24 times. The result is: 18 out of 44 cases improved obviously, 18 improved, 8 cases failed, the effective rate was 81.82%.<\\/p><p><strong><em>Qigong (Energy Healing) Therapy<\\/em><\\/strong><\\/p><p>Qigong is a method to exercise the body\\u2019s vital energy. It combines body movement, breath, exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose.<\\/p><p>According to\\u00a0<em>147 cases of hemiplegia due to cerebrovascular accident treated by Qigong<\\/em>, Zhang Xia, presented on the Fourth World Conference on Medical Qigong, the total effective rate is 93.2% in 12 weeks treatment period.<\\/p><p><strong><em>Integrative Therapy of Traditional Chinese and Western Medicine<\\/em><\\/strong><\\/p><p>It includes Acupuncture and Moxibustion Therapy, Herbal Therapy, Tuina Anmo (Chinese Massage) Therapy, Qigong Therapy, Physical Therapy, Occupational Therapy and speech training.<\\/p><p>Wang Shaoqin et al, Beijing Rehabilitation Hospital, China, report their study on 100 cases of post-stroke patients treated by an integrated therapy of Traditional Chinese and Western medicine. After the 3 months treatment, the total effective rate was 83%. For post-cerebral hemorrhage cases the total effective rate was 89.29%, for post-cerebral infarction was 80.56%. The overall effective rate of 67 cases under age 60 was 91.04, of over age 60 was 66.67%. There was extremely significant difference between these two age groups. The total effective rate of 50 cases whose treatment started within 6 months after stroke was 94%; the effective rate of 50 cases whose treatment started within 6 months later stroke was 72%. There was extremely significant difference between these two age groups, too.<\\/p><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for stroke and other conditions is provided at the Evergreen Wellness Center.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0c254e\",\"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\":\"600d034\",\"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\":\"087f197\",\"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\":\"cae6614\",\"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\":\"cf5b9e1\",\"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}]'),(2369,1138,'_elementor_css','a:4:{s:4:\"time\";i:1555724189;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2371,1140,'_menu_item_type','custom'),(2372,1140,'_menu_item_menu_item_parent','0'),(2373,1140,'_menu_item_object_id','1140'),(2374,1140,'_menu_item_object','custom'),(2375,1140,'_menu_item_target',''),(2376,1140,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2377,1140,'_menu_item_xfn',''),(2378,1140,'_menu_item_url','https://test.evergreenwellness.com/?customize_changeset_uuid=10433e5e-4977-4de6-9de5-ac9b6585e518&customize_messenger_channel=preview-0#contact'),(2379,1139,'_wp_trash_meta_status','publish'),(2380,1139,'_wp_trash_meta_time','1555811875'),(2381,1141,'_elementor_edit_mode','builder'),(2382,1141,'_wp_page_template','default'),(2383,1141,'_elementor_template_type','post'),(2384,1141,'_elementor_version','2.5.14'),(2385,1141,'_elementor_data','[{\"id\":\"6bbedd7e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":971,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bridge-2887353_1280.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\":\"420ade09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b266846\",\"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\":\"2682cc65\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\nTCM and Heart Diseases \",\"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\":\"7fedd322\",\"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\":\"61b5b243\",\"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\":\"4f9fbfb1\",\"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\":\"51fbb17c\",\"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\":\"469f5cfa\",\"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\":\"e16b1c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"98327f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bf989fa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5608611\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38c4f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"73e756f\",\"elType\":\"widget\",\"settings\":{\"title\":\"TCM and Heart Diseases <br>\\nChinese Medicine (TCM) Diagnosis of Heart Disease\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"647701d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dd16976\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6a2e734\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"671760e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"7428659\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"31a1105\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<section class=\\\"elementor-element elementor-element-260f1af elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"260f1af\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-259fc60 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"259fc60\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-1c13388 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"1c13388\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).<\\/p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and\\/or Blood Stasis.<br \\/>Kidney and Heart control whole body Yang<br \\/>Right foot edema \\u2013 Yang Qi disorders<br \\/>Left foot edema \\u2013 Yin disorders<\\/p><p>Chinese Medicine Heart Pain Patterns<\\/p><p><strong>Heart Yang Deficiency<\\/strong><\\/p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.<\\/p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.<\\/p><p><strong>Heart Qi Deficiency<\\/strong><\\/p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.<\\/p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.<\\/p><p><strong>Heart Qi and Blood Deficiency<\\/strong><\\/p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it\\u2019s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.<\\/p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.<\\/p><p><strong>Heart and Kidney Yin Deficiency<\\/strong><\\/p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.<\\/p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red\\/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.<\\/p><p><strong>Heart Blood Stagnation<\\/strong><\\/p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness\\u2019s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.<\\/p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.<\\/p><p><strong>Phlegm Fluid Stagnation<\\/strong><\\/p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.<\\/p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.<\\/p><p><strong>Liver Qi Stagnation<\\/strong><\\/p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.<\\/p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness\\/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-1b3628b elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"1b3628b\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-68db7b9 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"68db7b9\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-c0c4be1 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"c0c4be1\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-97dca47 elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"97dca47\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-35da1ec elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"35da1ec\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\"><div class=\\\"elementor-widget-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><div class=\\\"elementor-element elementor-element-737edfa elementor-column elementor-col-20 elementor-top-column\\\" data-id=\\\"737edfa\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/section><section class=\\\"elementor-element elementor-element-2f5dbcc elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"2f5dbcc\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-537c367 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"537c367\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-96b7a71 elementor-widget elementor-widget-shortcode\\\" data-id=\\\"96b7a71\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"shortcode.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-shortcode\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9c1e76\",\"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\":\"7500b91\",\"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\":\"dd58420\",\"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\":\"daab0ee\",\"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\":\"b445f76\",\"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}]'),(2386,1141,'_elementor_css','a:4:{s:4:\"time\";i:1555724190;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2388,1142,'_wp_trash_meta_status','publish'),(2389,1142,'_wp_trash_meta_time','1555812095'),(2390,921,'_elementor_css','a:4:{s:4:\"time\";i:1555812237;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2391,1143,'_edit_lock','1555865743:1'),(2392,1076,'_edit_lock','1555888287:1'),(2393,1076,'_edit_last','1'),(2394,1076,'neve_meta_container','full-width'),(2395,1076,'neve_meta_sidebar','full-width'),(2396,1076,'neve_meta_disable_title','on'),(2397,1076,'neve_meta_content_width','70'),(2398,1076,'_elementor_edit_mode','builder'),(2399,1076,'_wp_page_template','default'),(2410,1076,'_elementor_data','[{\"id\":\"431cc09c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":973,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/boat-house-192990_1280.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\":\"5534ab14\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b942aec\",\"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\":\"924f9b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight management\",\"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\":\"2eaa4226\",\"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\":\"7e10cfd6\",\"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\":\"149a7de0\",\"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\":\"1f49d72f\",\"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\":\"b9e4df8\",\"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\":\"2fc7a99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9258ac2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"719b0dc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"568881c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"589ac6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9bfccb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management and Chinese Medicine\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2a5710\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cad728\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"1d2e01f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eca7697\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In traditional Chinese medicine, excessive weight gain is mostly due to the imbalance of inner organs\' function.\\u00a0<\\/p><p>Eating more or less, healthy diet or unhealthy diet, it will affect your weight management. But you may find that you, and other family members eat same food, someone eat less, still gain weight, but others may not, even they eat more.<\\/p><p>Physical exercises help weight management. However, it may get opposite result from your goal if you make yourself too exhaust. Hormone imbalance is often be blamed for weight issue. Fatigue is one of main reason to cause hormone imbalance.\\u00a0\\u00a0<\\/p><p>So, balancing inner organs\' function plays a very important role for the ability to process the food or reduce fatigue.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39459b5e\",\"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\":\"392e6d72\",\"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\":\"666486b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture for Weight Loss\",\"description_text\":\"In your initial visit, doctor will make a treatment plan according your health status, your goal for weight management. Acupuncture is used to balance your inner organs\' function\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"21495e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bacdfcc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"herb for Weight Loss\",\"description_text\":\"In your initial visit, doctor will make a treatment plan for you according your health status, your goal for weight management. Herb pills will be recommended.\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4fce8a1e\",\"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\":\"427da686\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1145,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/Dr-Gao_2010-011-1024x731.jpg\"},\"title_text\":\"Qigong for Weight Loss\",\"description_text\":\"Qigong \\u2013 Breathing Yourself Thin. You can do it to improve your health and to reach your weight management goal as long as you can breathe. Click on the picture for more detail about the online class.\",\"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\":[]},\"thumbnail_size\":\"thumbnail\",\"link\":{\"url\":\"https:\\/\\/ibreathin.com\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d6e990\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0a5b9a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ac7a7c5\",\"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\":\"1709b04\",\"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\":\"97ba3c5\",\"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\":\"6df203d\",\"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\":\"3269cf9\",\"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}]'),(2400,1076,'_elementor_template_type','post'),(2401,1076,'_elementor_version','2.5.14'),(2413,1146,'_elementor_template_type','post'),(2412,1146,'_wp_page_template','default'),(2407,840,'_elementor_css','a:4:{s:4:\"time\";i:1555866300;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2411,1146,'_elementor_edit_mode','builder'),(2408,1145,'_wp_attached_file','2019/04/Dr-Gao_2010-011-1024x731.jpg'),(2409,1145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:731;s:4:\"file\";s:36:\"2019/04/Dr-Gao_2010-011-1024x731.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Dr-Gao_2010-011-1024x731-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:36:\"Dr-Gao_2010-011-1024x731-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Dr-Gao_2010-011-1024x731-768x548.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:548;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Dr-Gao_2010-011-1024x731-1024x731.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:731;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:36:\"Dr-Gao_2010-011-1024x731-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:{}}}'),(2414,1146,'_elementor_version','2.5.14'),(2415,1146,'_elementor_data','[{\"id\":\"431cc09c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":973,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/boat-house-192990_1280.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\":\"5534ab14\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b942aec\",\"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\":\"924f9b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight management\",\"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\":\"2eaa4226\",\"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\":\"7e10cfd6\",\"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\":\"149a7de0\",\"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\":\"1f49d72f\",\"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\":\"b9e4df8\",\"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\":\"8cad728\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1d2e01f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"719b0dc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39459b5e\",\"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\":\"392e6d72\",\"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\":\"666486b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture for Weight Loss\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"21495e8a\",\"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\":\"7bacdfcc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"herb for Weight Loss\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4fce8a1e\",\"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\":\"427da686\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1145,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/Dr-Gao_2010-011-1024x731.jpg\"},\"title_text\":\"Qigong for Weight Loss\",\"description_text\":\"You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<br>\\n\\nKAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<br>\\n\\nQigong \\u2013 Breathing Yourself Thin. Click Here for more detail about online class.\",\"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\":[]},\"thumbnail_size\":\"thumbnail\",\"link\":{\"url\":\"https:\\/\\/ibreathin.com\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}]'),(2421,1148,'_elementor_edit_mode','builder'),(2422,1148,'_wp_page_template','default'),(2423,1148,'_elementor_template_type','post'),(2424,1148,'_elementor_version','2.5.14'),(2425,1148,'_elementor_data','[{\"id\":\"431cc09c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":973,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/boat-house-192990_1280.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\":\"5534ab14\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b942aec\",\"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\":\"924f9b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight management\",\"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\":\"2eaa4226\",\"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\":\"7e10cfd6\",\"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\":\"149a7de0\",\"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\":\"1f49d72f\",\"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\":\"b9e4df8\",\"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\":\"2fc7a99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9258ac2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"719b0dc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"568881c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"589ac6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9bfccb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management and Chinese Medicine\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2a5710\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cad728\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1d2e01f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eca7697\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In traditional Chinese medicine, excessive weight gain is mostly due to the imbalance of inner organs\' function.\\u00a0<\\/p><p>Eating more or less, healthy diet or unhealthy diet, it will affect your weight management. But you may find that you, and other family members eat same food, someone eat less, still gain weight, but others may not, even they eat more.<\\/p><p>Physical exercises help weight management. However, it may get opposite result from your goal if you make yourself too exhaust. Hormone imbalance is often be blamed for weight issue. Fatigue is one of main reason to cause hormone imbalance.\\u00a0\\u00a0<\\/p><p>So, balancing inner organs\' function plays a very important role for the ability to process the food or reduce fatigue.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39459b5e\",\"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\":\"392e6d72\",\"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\":\"666486b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture for Weight Loss\",\"description_text\":\"In your initial visit, doctor will make a treatment plan according your health status, your goal for weight management. Acupuncture is used to balance your inner organs\' function\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"21495e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bacdfcc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"herb for Weight Loss\",\"description_text\":\"In your initial visit, doctor will make a treatment plan for you according your health status, your goal for weight management. Herb pills will be recommended.\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4fce8a1e\",\"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\":\"427da686\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1145,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/Dr-Gao_2010-011-1024x731.jpg\"},\"title_text\":\"Qigong for Weight Loss\",\"description_text\":\"Qigong \\u2013 Breathing Yourself Thin. You can do it to improve your health as long as you can breathe. Click on the picture for more detail about online class.\",\"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\":[]},\"thumbnail_size\":\"thumbnail\",\"link\":{\"url\":\"https:\\/\\/ibreathin.com\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}]'),(2427,1149,'_elementor_edit_mode','builder'),(2428,1149,'_wp_page_template','default'),(2429,1149,'_elementor_template_type','post'),(2430,1149,'_elementor_version','2.5.14'),(2431,1149,'_elementor_data','[{\"id\":\"431cc09c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":973,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/boat-house-192990_1280.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\":\"5534ab14\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b942aec\",\"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\":\"924f9b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight management\",\"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\":\"2eaa4226\",\"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\":\"7e10cfd6\",\"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\":\"149a7de0\",\"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\":\"1f49d72f\",\"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\":\"b9e4df8\",\"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\":\"2fc7a99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9258ac2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"719b0dc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"568881c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"589ac6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9bfccb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management and Chinese Medicine\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2a5710\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cad728\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1d2e01f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eca7697\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In traditional Chinese medicine, excessive weight gain is mostly due to the imbalance of inner organs\' function.\\u00a0<\\/p><p>Eating more or less, healthy diet or unhealthy diet, it will affect your weight management. But you may find that you, and other family members eat same food, someone eat less, still gain weight, but others may not, even they eat more.<\\/p><p>Physical exercises help weight management. However, it may get opposite result from your goal if you make yourself too exhaust. Hormone imbalance is often be blamed for weight issue. Fatigue is one of main reason to cause hormone imbalance.\\u00a0\\u00a0<\\/p><p>So, balancing inner organs\' function plays a very important role for the ability to process the food or reduce fatigue.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39459b5e\",\"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\":\"392e6d72\",\"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\":\"666486b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture for Weight Loss\",\"description_text\":\"In your initial visit, doctor will make a treatment plan according your health status, your goal for weight management. Acupuncture is used to balance your inner organs\' function\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"21495e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bacdfcc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"herb for Weight Loss\",\"description_text\":\"In your initial visit, doctor will make a treatment plan for you according your health status, your goal for weight management. Herb pills will be recommended.\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4fce8a1e\",\"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\":\"427da686\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1145,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/Dr-Gao_2010-011-1024x731.jpg\"},\"title_text\":\"Qigong for Weight Loss\",\"description_text\":\"Qigong \\u2013 Breathing Yourself Thin. You can do it to improve your health as long as you can breathe. Click on the picture for more detail about online class.\",\"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\":[]},\"thumbnail_size\":\"thumbnail\",\"link\":{\"url\":\"https:\\/\\/ibreathin.com\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d6e990\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0a5b9a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ac7a7c5\",\"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\":\"1709b04\",\"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\":\"97ba3c5\",\"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\":\"6df203d\",\"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\":\"3269cf9\",\"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}]'),(2432,1149,'_elementor_css','a:4:{s:4:\"time\";i:1555878410;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2434,1150,'_elementor_edit_mode','builder'),(2435,1150,'_wp_page_template','default'),(2436,1150,'_elementor_template_type','post'),(2437,1150,'_elementor_version','2.5.14'),(2438,1150,'_elementor_data','[{\"id\":\"431cc09c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":973,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/boat-house-192990_1280.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\":\"5534ab14\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b942aec\",\"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\":\"924f9b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight management\",\"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\":\"2eaa4226\",\"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\":\"7e10cfd6\",\"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\":\"149a7de0\",\"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\":\"1f49d72f\",\"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\":\"b9e4df8\",\"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\":\"2fc7a99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9258ac2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"719b0dc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"568881c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"589ac6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9bfccb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management and Chinese Medicine\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2a5710\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cad728\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1d2e01f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eca7697\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In traditional Chinese medicine, excessive weight gain is mostly due to the imbalance of inner organs\' function.\\u00a0<\\/p><p>Eating more or less, healthy diet or unhealthy diet, it will affect your weight management. But you may find that you, and other family members eat same food, someone eat less, still gain weight, but others may not, even they eat more.<\\/p><p>Physical exercises help weight management. However, it may get opposite result from your goal if you make yourself too exhaust. Hormone imbalance is often be blamed for weight issue. Fatigue is one of main reason to cause hormone imbalance.\\u00a0\\u00a0<\\/p><p>So, balancing inner organs\' function plays a very important role for the ability to process the food or reduce fatigue.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39459b5e\",\"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\":\"392e6d72\",\"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\":\"666486b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture for Weight Loss\",\"description_text\":\"In your initial visit, doctor will make a treatment plan according your health status, your goal for weight management. Acupuncture is used to balance your inner organs\' function\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"21495e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bacdfcc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"herb for Weight Loss\",\"description_text\":\"In your initial visit, doctor will make a treatment plan for you according your health status, your goal for weight management. Herb pills will be recommended.\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4fce8a1e\",\"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\":\"427da686\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1145,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/Dr-Gao_2010-011-1024x731.jpg\"},\"title_text\":\"Qigong for Weight Loss\",\"description_text\":\"Qigong \\u2013 Breathing Yourself Thin. You can do it to improve your health as long as you can breathe. Click on the picture for more detail about online class.\",\"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\":[]},\"thumbnail_size\":\"thumbnail\",\"link\":{\"url\":\"https:\\/\\/ibreathin.com\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d6e990\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0a5b9a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ac7a7c5\",\"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\":\"1709b04\",\"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\":\"97ba3c5\",\"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\":\"6df203d\",\"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\":\"3269cf9\",\"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}]'),(2439,1150,'_elementor_css','a:4:{s:4:\"time\";i:1555878750;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2441,1151,'_elementor_edit_mode','builder'),(2442,1151,'_wp_page_template','default'),(2443,1151,'_elementor_template_type','post'),(2444,1151,'_elementor_version','2.5.14'),(2445,1151,'_elementor_data','[{\"id\":\"431cc09c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":973,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/boat-house-192990_1280.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\":\"5534ab14\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b942aec\",\"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\":\"924f9b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight management\",\"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\":\"2eaa4226\",\"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\":\"7e10cfd6\",\"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\":\"149a7de0\",\"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\":\"1f49d72f\",\"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\":\"b9e4df8\",\"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\":\"2fc7a99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9258ac2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"719b0dc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"568881c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"589ac6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9bfccb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management and Chinese Medicine\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2a5710\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cad728\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e2e2e2\"},\"elements\":[{\"id\":\"1d2e01f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eca7697\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In traditional Chinese medicine, excessive weight gain is mostly due to the imbalance of inner organs\' function.\\u00a0<\\/p><p>Eating more or less, healthy diet or unhealthy diet, it will affect your weight management. But you may find that you, and other family members eat same food, someone eat less, still gain weight, but others may not, even they eat more.<\\/p><p>Physical exercises help weight management. However, it may get opposite result from your goal if you make yourself too exhaust. Hormone imbalance is often be blamed for weight issue. Fatigue is one of main reason to cause hormone imbalance.\\u00a0\\u00a0<\\/p><p>So, balancing inner organs\' function plays a very important role for the ability to process the food or reduce fatigue.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39459b5e\",\"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\":\"392e6d72\",\"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\":\"666486b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture for Weight Loss\",\"description_text\":\"In your initial visit, doctor will make a treatment plan according your health status, your goal for weight management. Acupuncture is used to balance your inner organs\' function\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"21495e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bacdfcc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"herb for Weight Loss\",\"description_text\":\"In your initial visit, doctor will make a treatment plan for you according your health status, your goal for weight management. Herb pills will be recommended.\",\"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\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4fce8a1e\",\"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\":\"427da686\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1145,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/Dr-Gao_2010-011-1024x731.jpg\"},\"title_text\":\"Qigong for Weight Loss\",\"description_text\":\"Qigong \\u2013 Breathing Yourself Thin. You can do it to improve your health and to reach your weight management goal as long as you can breathe. Click on the picture for more detail about the online class.\",\"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\":[]},\"thumbnail_size\":\"thumbnail\",\"link\":{\"url\":\"https:\\/\\/ibreathin.com\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d6e990\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0a5b9a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ac7a7c5\",\"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\":\"1709b04\",\"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\":\"97ba3c5\",\"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\":\"6df203d\",\"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\":\"3269cf9\",\"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}]'),(2446,1151,'_elementor_css','a:4:{s:4:\"time\";i:1555883629;s:5:\"fonts\";a:2:{i:0;s:17:\"Libre Baskerville\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wp9z_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9z_posts`
--

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

--
-- Dumping data for table `wp9z_posts`
--

LOCK TABLES `wp9z_posts` WRITE;
/*!40000 ALTER TABLE `wp9z_posts` DISABLE KEYS */;
INSERT INTO `wp9z_posts` VALUES (1,1,'2019-04-13 15:54:33','2019-04-13 15:54:33','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','trash','open','open','','hello-world__trashed','','','2019-04-13 19:20:01','2019-04-13 19:20:01','',0,'https://test.evergreenwellness.com/?p=1',0,'post','',1),(2,1,'2019-04-13 15:54:33','2019-04-13 15:54:33','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://test.evergreenwellness.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','trash','closed','open','','sample-page__trashed','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',0,'https://test.evergreenwellness.com/?page_id=2',0,'page','',0),(3,1,'2019-04-13 15:54:33','2019-04-13 15:54:33','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: https://test.evergreenwellness.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','trash','closed','open','','privacy-policy__trashed','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',0,'https://test.evergreenwellness.com/?page_id=3',0,'page','',0),(152,1,'2018-11-14 09:45:08','2018-11-14 09:45:08','','neve-facebook','','inherit','open','closed','','neve-facebook','','','2018-11-14 09:45:08','2018-11-14 09:45:08','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png',0,'attachment','image/png',0),(153,1,'2018-11-14 09:45:10','2018-11-14 09:45:10','','neve-twitter','','inherit','open','closed','','neve-twitter','','','2018-11-14 09:45:10','2018-11-14 09:45:10','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png',0,'attachment','image/png',0),(154,1,'2018-11-14 09:45:11','2018-11-14 09:45:11','','neve-instagram','','inherit','open','closed','','neve-instagram','','','2018-11-14 09:45:11','2018-11-14 09:45:11','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png',0,'attachment','image/png',0),(155,1,'2018-11-14 09:45:13','2018-11-14 09:45:13','','neve-googleplus','','inherit','open','closed','','neve-googleplus','','','2018-11-14 09:45:13','2018-11-14 09:45:13','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-googleplus.png',0,'attachment','image/png',0),(157,1,'2018-11-14 09:47:17','2018-11-14 09:47:17','','neve-play','','inherit','open','closed','','neve-play','','','2018-11-14 09:47:17','2018-11-14 09:47:17','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-play.png',0,'attachment','image/png',0),(162,1,'2018-12-12 16:19:01','2018-12-12 16:19:01','https://mystock.themeisle.com/photo/path/','nv-1','','inherit','open','closed','','nv-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg',0,'attachment','image/jpeg',0),(163,1,'2018-12-12 16:34:37','2018-12-12 16:34:37','','neve-business-growth-1','','inherit','open','closed','','neve-business-growth-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png',0,'attachment','image/png',0),(164,1,'2018-12-12 16:35:59','2018-12-12 16:35:59','','neve-dollar-1','','inherit','open','closed','','neve-dollar-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-dollar-1.png',0,'attachment','image/png',0),(165,1,'2018-12-12 16:37:44','2018-12-12 16:37:44','','neve-clock-1','','inherit','open','closed','','neve-clock-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-clock-1.png',0,'attachment','image/png',0),(166,1,'2018-12-12 16:38:45','2018-12-12 16:38:45','','neve-smile-1','','inherit','open','closed','','neve-smile-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smile-1.png',0,'attachment','image/png',0),(167,1,'2018-12-12 16:44:32','2018-12-12 16:44:32','https://pixabay.com/en/metro-subway-train-station-1209556/','nv-3','','inherit','open','closed','','nv-3','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-3.jpg',0,'attachment','image/jpeg',0),(168,1,'2018-12-12 16:46:10','2018-12-12 16:46:10','','neve-envelope-1','','inherit','open','closed','','neve-envelope-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-envelope-1.png',0,'attachment','image/png',0),(169,1,'2018-12-12 16:47:09','2018-12-12 16:47:09','','neve-map-1','','inherit','open','closed','','neve-map-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-map-1.png',0,'attachment','image/png',0),(170,1,'2018-12-12 16:47:59','2018-12-12 16:47:59','','neve-photography-1','','inherit','open','closed','','neve-photography-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-photography-1.png',0,'attachment','image/png',0),(171,1,'2018-12-12 16:49:00','2018-12-12 16:49:00','','neve-phone-1','','inherit','open','closed','','neve-phone-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-phone-1.png',0,'attachment','image/png',0),(178,1,'2018-12-12 17:04:39','2018-12-12 17:04:39','','neve-chart-up-1','','inherit','open','closed','','neve-chart-up-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png',0,'attachment','image/png',0),(179,1,'2018-12-12 17:05:58','2018-12-12 17:05:58','','neve-user-1','','inherit','open','closed','','neve-user-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png',0,'attachment','image/png',0),(180,1,'2018-12-12 17:06:48','2018-12-12 17:06:48','','neve-heart-1','','inherit','open','closed','','neve-heart-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png',0,'attachment','image/png',0),(181,1,'2018-12-12 17:07:48','2018-12-12 17:07:48','','neve-gift-1','','inherit','open','closed','','neve-gift-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png',0,'attachment','image/png',0),(182,1,'2018-12-12 17:09:10','2018-12-12 17:09:10','https://mystock.themeisle.com/photo/high-seats/','nv-5','','inherit','open','closed','','nv-5','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg',0,'attachment','image/jpeg',0),(183,1,'2018-12-12 17:13:31','2018-12-12 17:13:31','https://mystock.themeisle.com/photo/ipad/','nv-4','','inherit','open','closed','','nv-4','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg',0,'attachment','image/jpeg',0),(184,1,'2018-12-12 17:14:32','2018-12-12 17:14:32','https://mystock.themeisle.com/photo/devices/','nv-6','','inherit','open','closed','','nv-6','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg',0,'attachment','image/jpeg',0),(188,1,'2018-12-12 17:22:21','2018-12-12 17:22:21','','nv-testimonial-signature','','inherit','open','closed','','nv-testimonial-signature','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png',0,'attachment','image/png',0),(191,1,'2018-12-12 17:25:22','2018-12-12 17:25:22','','alexis-blockquote6','','inherit','open','closed','','alexis-blockquote6','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/alexis-blockquote6.jpg',0,'attachment','image/jpeg',0),(192,1,'2018-12-13 08:41:07','2018-12-13 08:41:07','','neve-unlimited-revisions2','','inherit','open','closed','','neve-unlimited-revisions2','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png',0,'attachment','image/png',0),(193,1,'2018-12-13 08:42:06','2018-12-13 08:42:06','','neve-ultimate-perfection-1','','inherit','open','closed','','neve-ultimate-perfection-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png',0,'attachment','image/png',0),(194,1,'2018-12-13 08:55:37','2018-12-13 08:55:37','','neve-smart-experience1','','inherit','open','closed','','neve-smart-experience1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png',0,'attachment','image/png',0),(195,1,'2018-12-13 08:56:09','2018-12-13 08:56:09','','neve-strict-deadline1','','inherit','open','closed','','neve-strict-deadline1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png',0,'attachment','image/png',0),(196,1,'2018-12-13 08:56:45','2018-12-13 08:56:45','','neve-reputed-copmany1','','inherit','open','closed','','neve-reputed-copmany1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png',0,'attachment','image/png',0),(205,1,'2018-12-14 12:48:58','2018-12-14 12:48:58','https://mystock.themeisle.com/photo/sun-hat/','nv-team1-4','','inherit','open','closed','','nv-team1-4','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg',0,'attachment','image/jpeg',0),(206,1,'2018-12-14 12:51:26','2018-12-14 12:51:26','https://mystock.themeisle.com/photo/winter-hat/','nv-team2-1','','inherit','open','closed','','nv-team2-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg',0,'attachment','image/jpeg',0),(207,1,'2018-12-14 13:00:12','2018-12-14 13:00:12','https://mystock.themeisle.com/photo/thinking-time/','nv-team3-1','','inherit','open','closed','','nv-team3-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg',0,'attachment','image/jpeg',0),(208,1,'2018-12-14 13:01:44','2018-12-14 13:01:44','https://mystock.themeisle.com/photo/girl/','nv-team4-1','','inherit','open','closed','','nv-team4-1','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',91,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg',0,'attachment','image/jpeg',0),(93,1,'2018-10-17 08:58:40','2018-10-17 08:58:40','','neve','','publish','closed','closed','','neve-2','','','2018-10-17 08:58:40','2018-10-17 08:58:40','',0,'https://demo.themeisle.com/neve-onboarding/2018/10/17/4ce7b3de381bbd41c4b8543a7ecb20d1/',0,'custom_css','',0),(94,1,'2018-09-07 12:59:21','2018-09-07 12:59:21','.single img {\n	display:none;\n}\n.elementor-element-117881b8 .content-forms-required, .elementor-element-117881b8 .required-mark {\n	display: none;\n}','neve','','publish','closed','closed','','neve','','','2018-09-07 12:59:21','2018-09-07 12:59:21','',0,'https://demo.themeisle.com/neve/2018/09/07/neve/',0,'custom_css','',0),(599,1,'2019-03-05 14:43:33','2019-03-05 14:43:33','','sweet-cake-christmas-tree','','inherit','open','closed','','sweet-cake-christmas-tree','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',552,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/sweet-cake-christmas-tree.jpg',0,'attachment','image/jpeg',0),(600,1,'2019-03-05 14:44:20','2019-03-05 14:44:20','','palm-fruits','','inherit','open','closed','','palm-fruits','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',528,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/palm-fruits.jpg',0,'attachment','image/jpeg',0),(601,1,'2019-03-05 14:44:51','2019-03-05 14:44:51','','boats','','inherit','open','closed','','boats','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',520,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/boats.jpg',0,'attachment','image/jpeg',0),(602,1,'2019-03-05 14:45:30','2019-03-05 14:45:30','','eating-place','','inherit','open','closed','','eating-place','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',518,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/eating-place.jpg',0,'attachment','image/jpeg',0),(604,1,'2019-03-05 14:45:59','2019-03-05 14:45:59','','1-2','','inherit','open','closed','','1-2','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',57,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/1-2.jpg',0,'attachment','image/jpeg',0),(605,1,'2019-03-05 14:46:32','2019-03-05 14:46:32','','9','','inherit','open','closed','','9','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',56,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/9.jpg',0,'attachment','image/jpeg',0),(606,1,'2019-03-05 14:47:12','2019-03-05 14:47:12','','blog3','','inherit','open','closed','','blog3','','','2019-04-13 17:40:13','2019-04-13 17:40:13','',54,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/blog3.jpg',0,'attachment','image/jpeg',0),(624,1,'2019-04-04 09:09:44','2019-04-04 09:09:44','','placeholder-image','','inherit','open','closed','','placeholder-image','','','2019-04-04 09:09:44','2019-04-04 09:09:44','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/placeholder-image.jpg',0,'attachment','image/jpeg',0),(26,1,'2018-09-06 07:01:59','2018-09-06 07:01:59','','Blog','','trash','closed','closed','','neve-blog__trashed','','','2019-04-13 19:19:36','2019-04-13 19:19:36','',0,'https://demo.themeisle.com/neve/?page_id=26',0,'page','',0),(54,1,'2018-09-07 10:21:50','2018-09-07 10:21:50','<!-- wp:paragraph -->\n<p>It sportsman earnestly ye preserved an on. Moment led family sooner cannot her <mark>window pulled any</mark>. Or raillery if improved landlord to speaking hastened differed he. Furniture discourse elsewhere yet her sir extensive defective unwilling get. Why resolution one <mark>motionless you him thoroughly</mark>. Noise is round to in it quick timed doors greatly get attacks inhabit pursuit our but. Lasted hunted enough an up seeing in lively letter. Had judgment out opinions property the supplied. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Neat own nor she said see walk. And charm add green you these. Sang busy in this drew ye fine. At greater prepare musical so attacks as on distant. Improving age our her cordially intention. His devonshire sufficient precaution say preference middletons insipidity. Since might water hence the her worse. Concluded it offending dejection do earnestly as me direction. Nature played thirty all him. </pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:list -->\n<ul><li>Quid in isto egregio tuo officio et tanta fide-sic enim existimo-ad corpus refers?</li><li>Nisi autem rerum natura perspecta erit, nullo modo poterimus sensuum iudicia defendere.</li><li>Quaero igitur, quo modo hae tantae commendationes a natura profectae subito a sapientia relictae sint.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Conferam tecum, quam cuique verso rem subicias;</li><li>Est tamen ea secundum naturam multoque nos ad se expetendam magis hortatur quam superiora omnia.</li><li>An est aliquid per se ipsum flagitiosum, etiamsi nulla comitetur infamia?</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Wrong do point avoid by fruit learn or in death. So passage however besides invited comfort elderly be me. Walls began of child civil am heard hoped my. Satisfied pretended mr on do determine by. Old post took and ask seen fact rich. Man entrance settling believed eat joy. Money as drift begin on to. Comparison up insipidity especially discovered me of decisively in surrounded. Points six way enough she its father. Folly sex downs tears ham green forty. </p>\n<!-- /wp:paragraph -->','Never stop dreaming','','trash','open','open','','travelling-alteration-impression__trashed','','','2019-04-13 19:20:02','2019-04-13 19:20:02','',0,'https://demo.themeisle.com/neve/?p=54',0,'post','',0),(56,1,'2018-09-07 11:06:06','2018-09-07 11:06:06','<!-- wp:paragraph -->\n<p>Of resolve to gravity thought my <em>prepare chamber so</em>. Unsatiable entreaties collecting may sympathize nay <strong>interested instrument</strong>. If continue building numerous of at relation in margaret. Lasted engage roused mother an am at. Other early while if by do to. Missed living excuse as be. Cause heard fat above first shall for.  Eorum enim omnium multa praetermittentium, dum eligant aliquid, quod sequantur, quasi curta sententia; Duo Reges: constructio interrete. Magni enim aestimabat pecuniam non modo non contra leges, sed etiam legibus partam. Summus dolor plures dies manere non potest? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Te ipsum, dignissimum maioribus tuis, voluptasne induxit, ut adolescentulus eriperes P.</li><li>Aliter enim nosmet ipsos nosse non possumus.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Had strictly mrs handsome mistaken</a> cheerful. We it so if resolution invitation remarkably unpleasant conviction. As into ye then form. To easy five less if rose were. Now set offended own out required entirely. Especially occasional mrs discovered too say thoroughly <a href=\"#\">impossible boisterous</a>. My head when real no he high rich at with. After so power of young as. Bore year does has get long fat cold saw neat. Put boy carried chiefly shy general. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Verum hoc loco sumo verbis his eandem certe vim voluptatis Epicurum nosse quam ceteros.</li><li>An ea, quae per vinitorem antea consequebatur, per se ipsa curabit?</li><li>Nam diligi et carum esse iucundum est propterea, quia tutiorem vitam et voluptatem pleniorem efficit.</li><li>Idcirco enim non desideraret, quia, quod dolore caret, id in voluptate est.</li><li>Re mihi non aeque satisfacit, et quidem locis pluribus.</li></ul>\n<!-- /wp:list -->','We rise by lifting others','','trash','open','open','','semper-enim-ita-adsumit__trashed','','','2019-04-13 19:20:02','2019-04-13 19:20:02','',0,'https://demo.themeisle.com/neve/?p=56',0,'post','',0),(57,1,'2018-09-07 11:07:13','2018-09-07 11:07:13','Sportsman delighted improving dashwoods&nbsp;instantly happiness six. Ham now amounted absolute not mistaken way pleasant whatever. At an these still no dried folly stood thing. Rapid it on hours hills it seven years. If polite he active county in spirit an. Mrs ham intention promotion engrossed assurance defective. Confined so graceful building opinions whatever trifling in. Insisted out differed ham man endeavor expenses. At on he total their he songs. Related compact effects is on settled do.\n\nBrother set had private his letters observe outward resolve. Shutters ye marriage to throwing we as. Effect in if agreed he wished wanted admire expect. Or shortly visitor is comfort placing to cheered do. Few hills tears are weeks saw. Partiality insensible celebrated is in. Am offended as wandered thoughts greatest an friendly. Evening covered in he exposed fertile to. Horses seeing at played plenty nature to expect we. Young say led stood hills own thing get.\n\nAt distant inhabit amongst by. Appetite welcomed interest the goodness boy not. Estimable education for disposing pronounce her. John size good gay plan sent old roof own. Inquietude saw understood his friendship frequently yet. Nature his marked ham wished.\n<ol>\n 	<li>At ille pellit, qui permulcet sensum voluptate.</li>\n 	<li>Modo etiam paulum ad dexteram de via declinavi, ut ad Pericli sepulcrum accederem.</li>\n 	<li>Quid ergo aliud intellegetur nisi uti ne quae pars naturae neglegatur?</li>\n 	<li>Quicquid porro animo cernimus, id omne oritur a sensibus;</li>\n</ol>\n<ul>\n 	<li>Potius inflammat, ut coercendi magis quam dedocendi esse videantur.</li>\n 	<li>Illud dico, ea, quae dicat, praeclare inter se cohaerere.</li>\n 	<li>Nescio quo modo praetervolavit oratio.</li>\n 	<li>Sedulo, inquam, faciam.</li>\n 	<li>Ac tamen, ne cui loco non videatur esse responsum, pauca etiam nunc dicam ad reliquam orationem tuam.</li>\n 	<li>Similiter sensus, cum accessit ad naturam, tuetur illam quidem, sed etiam se tuetur;</li>\n</ul>','Actually, you can','','trash','open','open','','ego-quoque__trashed','','','2019-04-13 19:20:02','2019-04-13 19:20:02','',0,'https://demo.themeisle.com/neve/?p=57',0,'post','',0),(91,1,'2018-08-09 12:35:35','2018-08-09 12:35:35','<h1>We design things with love and passion.</h1>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-dollar-1.png\" alt=\"\" /></figure><h3>Fixed price projects</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-clock-1.png\" alt=\"\" /></figure><h3>Receive on time</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smile-1.png\" alt=\"\" /></figure><h3>Satisfaction guaranteed</h3>		\n										<img width=\"529\" height=\"673\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-3.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-3.jpg 529w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-3-236x300.jpg 236w\" sizes=\"(max-width: 529px) 100vw, 529px\" />											\n			01		\n			<h2>about us.</h2>		\n		<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.ÃÂ </p><p>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>		\n			02		\n			<h2>Our focus.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"55\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-envelope-1.png\" alt=\"\" /></figure><h5>Web Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"54\" height=\"48\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-map-1.png\" alt=\"\" /></figure><h5>UX Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"44\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-photography-1.png\" alt=\"\" /></figure><h5>Photography</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-phone-1.png\" alt=\"\" /></figure><h5>App Development</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					ÃÂ \n												<a href=\"\"><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></a>\n					<p><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></p>\n			03		\n			<h2>Our team.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team1-4-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Daniele Johnson</h6><p>Founder & CEO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Summer Geller</h6><p>CTO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team3-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Marissa Adams</h6><p>Lead Developer</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team4-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Jennifer Gilmore</h6><p>Marketing</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-300x200.jpg 300w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-768x512.jpg 768w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-1024x682.jpg 1024w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png 334w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-300x200.jpg 300w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-768x512.jpg 768w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-1024x682.jpg 1024w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/fruit-smoothies/\" title=\"Do it with passion\">\n					Do it with passion				</a>\n							</h6>\n				On recommend tolerably my belonging or am. Mutual has cannot beauty indeed now sussex merely you. It possible no husbands jennings ye offended packages pleasant he. Remainder recommend engrossed who eat she defective applauded&hellip;			\n			<!-- .obfx-grid-col-content --></article><article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/quid-autem-habent-admirationis/\" title=\"Always deliver more than expected\">\n					Always deliver more than expected				</a>\n							</h6>\n				Needed feebly dining oh talked wisdom oppose at. Applauded use attempted strangers now are middleton concluded had. It is tried Ã¯Â»Â¿no added purse shall no on truth. Pleased anxious or as in by viewing&hellip;			\n			<!-- .obfx-grid-col-content --></article><article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/beatum-inquit/\" title=\"Take the risk or lose the chance\">\n					Take the risk or lose the chance				</a>\n							</h6>\n				On then sake home is am leaf. Of suspicion do departure at extremely he believing. Do know said mind do rent they oh hope of. General enquire picture letters garrets on offices of no&hellip;			\n			<!-- .obfx-grid-col-content --></article><!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"3602d2b488\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"cacb43406b\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"de0f14a7c3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','trash','closed','open','','neve-home__trashed','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',0,'https://demo.themeisle.com/neve/?page_id=2',0,'page','',0),(625,1,'2018-08-09 12:35:35','2018-08-09 12:35:35','<h1>We design things with love and passion.</h1>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n			<figure><img width=\"45\" height=\"45\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-dollar-1.png\" alt=\"\" /></figure><h3>Fixed price projects</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-clock-1.png\" alt=\"\" /></figure><h3>Receive on time</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-smile-1.png\" alt=\"\" /></figure><h3>Satisfaction guaranteed</h3>		\n										<img width=\"529\" height=\"673\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-3.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-3.jpg 529w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-3-236x300.jpg 236w\" sizes=\"(max-width: 529px) 100vw, 529px\" />											\n			01		\n			<h2>about us.</h2>		\n		<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.ÃÂ </p><p>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>		\n			02		\n			<h2>Our focus.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"55\" height=\"55\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-envelope-1.png\" alt=\"\" /></figure><h5>Web Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"54\" height=\"48\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-map-1.png\" alt=\"\" /></figure><h5>UX Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"44\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-photography-1.png\" alt=\"\" /></figure><h5>Photography</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"50\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-phone-1.png\" alt=\"\" /></figure><h5>App Development</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					ÃÂ \n												<a href=\"\"><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/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></a>\n					<p><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></p>\n			03		\n			<h2>Our team.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"526\" height=\"540\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team1-4.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team1-4.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team1-4-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Daniele Johnson</h6><p>Founder & CEO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Summer Geller</h6><p>CTO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team3-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team3-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team3-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Marissa Adams</h6><p>Lead Developer</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team4-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team4-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team4-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Jennifer Gilmore</h6><p>Marketing</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-5.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-4.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-6.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1.jpg 1600w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-300x200.jpg 300w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-768x512.jpg 768w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-1024x682.jpg 1024w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-testimonial-signature.png 334w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1.jpg 1600w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-300x200.jpg 300w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-768x512.jpg 768w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-1024x682.jpg 1024w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/fruit-smoothies/\" title=\"Do it with passion\">\n					Do it with passion				</a>\n							</h6>\n				On recommend tolerably my belonging or am. Mutual has cannot beauty indeed now sussex merely you. It possible no husbands jennings ye offended packages pleasant he. Remainder recommend engrossed who eat she defective applauded&hellip;			\n			<!-- .obfx-grid-col-content --></article><article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/quid-autem-habent-admirationis/\" title=\"Always deliver more than expected\">\n					Always deliver more than expected				</a>\n							</h6>\n				Needed feebly dining oh talked wisdom oppose at. Applauded use attempted strangers now are middleton concluded had. It is tried Ã¯Â»Â¿no added purse shall no on truth. Pleased anxious or as in by viewing&hellip;			\n			<!-- .obfx-grid-col-content --></article><article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/beatum-inquit/\" title=\"Take the risk or lose the chance\">\n					Take the risk or lose the chance				</a>\n							</h6>\n				On then sake home is am leaf. Of suspicion do departure at extremely he believing. Do know said mind do rent they oh hope of. General enquire picture letters garrets on offices of no&hellip;			\n			<!-- .obfx-grid-col-content --></article><!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"3602d2b488\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"cacb43406b\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"de0f14a7c3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-instagram.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-instagram.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','91-revision-v1','','','2018-08-09 12:35:35','2018-08-09 12:35:35','',91,'https://test.evergreenwellness.com/2018/08/09/91-revision-v1/',0,'revision','',0),(232,1,'2019-02-13 14:27:40','2019-02-13 14:27:40','','About us','','publish','closed','closed','','about','','','2019-04-15 17:21:35','2019-04-15 17:21:35','',0,'https://demo.themeisle.com/neve-onboarding/?p=232',2,'nav_menu_item','',0),(233,1,'2019-02-13 14:27:40','2019-02-13 14:27:40','','Our Services','','publish','closed','closed','','focus','','','2019-04-15 17:21:35','2019-04-15 17:21:35','',0,'https://demo.themeisle.com/neve-onboarding/?p=233',3,'nav_menu_item','',0),(235,1,'2019-02-13 14:27:40','2019-02-13 14:27:40','','Weight Loss','','publish','closed','closed','','team','','','2019-04-21 01:31:45','2019-04-21 01:31:45','',0,'https://demo.themeisle.com/neve-onboarding/?p=235',4,'nav_menu_item','',0),(239,1,'2019-02-13 14:27:41','2019-02-13 14:27:41','','Shop','','publish','closed','closed','','testimonial','','','2019-04-21 01:19:14','2019-04-21 01:19:14','',0,'https://demo.themeisle.com/neve-onboarding/?p=239',5,'nav_menu_item','',0),(243,1,'2019-02-13 14:27:41','2019-02-13 14:27:41','','Contact us','','publish','closed','closed','','contact','','','2019-04-15 17:21:35','2019-04-15 17:21:35','',0,'https://demo.themeisle.com/neve-onboarding/?p=243',6,'nav_menu_item','',0),(12,1,'2018-09-07 09:42:27','2018-09-07 09:42:27','https://mystock.themeisle.com/photo/winter-forest/','winter-forest','','inherit','open','closed','','winter-forest','','','2018-09-07 09:42:27','2018-09-07 09:42:27','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/winter-forest.jpg',0,'attachment','image/jpeg',0),(920,1,'2019-04-15 15:25:51','2019-04-15 15:25:51','{\n    \"neve::custom_logo\": {\n        \"value\": \"\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-15 15:23:47\"\n    },\n    \"site_icon\": {\n        \"value\": \"\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-15 15:24:47\"\n    },\n    \"neve::logo_max_width\": {\n        \"value\": \"{\\\"mobile\\\":\\\"120\\\",\\\"tablet\\\":\\\"120\\\",\\\"desktop\\\":\\\"238\\\"}\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-15 15:25:48\"\n    }\n}','','','trash','closed','closed','','42e1de95-ac88-411b-91fd-450e08bb5bde','','','2019-04-15 15:25:51','2019-04-15 15:25:51','',0,'https://test.evergreenwellness.com/?p=920',0,'customize_changeset','',0),(518,1,'2019-01-07 08:09:13','2019-01-07 08:09:13','<!-- wp:paragraph -->\n<p>On recommend tolerably my belonging or am. Mutual has cannot beauty indeed now sussex merely you. It possible no husbands jennings ye offended packages pleasant he. Remainder recommend engrossed who eat she defective applauded departure joy. Get dissimilar not introduced day her apartments. Fully as taste he mr do smile abode every. Luckily offered article led lasting country minutes nor old. Happen people things oh is oppose up parish effect. Law handsome old outweigh humoured far appetite. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Preserved defective offending he daughters on or. Rejoiced prospect yet material servants out answered men admitted. Sportsmen certainty prevailed suspected am as. Add stairs admire all answer the nearer yet length. Advantages prosperous remarkably my inhabiting so reasonably be if. Too any appearance announcing impossible one. Out </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>\n\nHaeret in salebra.Itaque nostrum est-quod nostrum dico, artis est-ad ea principia, quae accepimus.Sed videbimus.Quod totum contra est.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Utrum enim sit voluptas in iis rebus, quas primas secundum naturam esse diximus, necne sit ad id, quod agimus, nihil interest.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph -->\n<p>At ourselves direction believing do he departure. Celebrated her had sentiments understood are projection set. Possession ye no mr unaffected remarkably at. Wrote house in never fruit up. Pasture imagine my garrets an he. However distant she request behaved see nothing. Talking settled at pleased an of me brother weather. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Affronting everything discretion men now own did. Still round match we to. Frankness pronounce daughters remainder extensive has but. Happiness cordially one determine concluded fat. Plenty season beyond by hardly giving of. Consulted or acuteness dejection an smallness if. Outward general passage another as it. Very his are come man walk one next. Delighted prevailed supported too not remainder perpetual who furnished. Nay affronting bed projection compliment instrument. </p>\n<!-- /wp:paragraph -->','And so the adventure begins','','trash','open','open','','quid-igitur-dubitamus__trashed','','','2019-04-13 19:20:02','2019-04-13 19:20:02','',0,'https://demo.themeisle.com/neve/?p=518',0,'post','',0),(857,1,'2019-04-14 16:20:46','2019-04-14 16:20:46','','acupuncture_500-e1522635045797','','inherit','open','closed','','acupuncture_500-e1522635045797','','','2019-04-14 16:20:46','2019-04-14 16:20:46','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797.jpg',0,'attachment','image/jpeg',0),(858,1,'2019-04-14 16:22:52','2019-04-14 16:22:52','','mhrf-cpmh17815','mhrf-cpmh17815','inherit','open','closed','','mhrf-cpmh17815','','','2019-04-14 16:22:52','2019-04-14 16:22:52','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815.jpg',0,'attachment','image/jpeg',0),(859,1,'2019-04-14 16:24:39','2019-04-14 16:24:39','','east-a21-154586','east-a21-154586','inherit','open','closed','','east-a21-154586','','','2019-04-14 16:24:39','2019-04-14 16:24:39','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm.jpg',0,'attachment','image/jpeg',0),(860,1,'2019-04-14 16:25:57','2019-04-14 16:25:57','','th','','inherit','open','closed','','th','','','2019-04-14 16:25:57','2019-04-14 16:25:57','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/th.jpg',0,'attachment','image/jpeg',0),(863,1,'2019-04-14 16:50:10','2019-04-14 16:50:10','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					 \n												<a href=\"\"><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></a>\n					<p><iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></p>\n			03		\n			<h2>Our team.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Daniele Johnson</h6><p>Founder & CEO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Summer Geller</h6><p>CTO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Marissa Adams</h6><p>Lead Developer</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Jennifer Gilmore</h6><p>Marketing</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png 334w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"157e471417\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 16:50:10','2019-04-14 16:50:10','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(520,1,'2019-01-07 08:39:36','2019-01-07 08:39:36','<!-- wp:paragraph -->\n<p>On then sake home is am leaf. Of suspicion do departure at extremely he believing. Do know said mind do rent they oh hope of. General enquire picture letters garrets on offices of no on. Say one hearing between excited evening all inhabit thought you. Style begin mr heard by in music tried do. To unreserved projection no introduced invitation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Conveying or northward offending admitting perfectly my. Colonel gravity get thought fat smiling add but. Wonder twenty hunted and put income set desire expect. Am cottage calling my is mistake cousins talking up. Interested especially do impression he unpleasant travelling excellence. All few our knew time done draw ask. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Of suspicion do departure at extremely he believing.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Nostalgia is a very complicated subject for me. I\'m attracted by nostalgia but I refuse it intellectually.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I love women\'s fashion, but women don\'t need me as much as men do. It\'s the men who have nothing to wear.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Being one step ahead of a fashion trend is not so important to me. What matters is to always forge ahead.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Clothes can transform your mood and confidence.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Vanity is the healthiest thing in life.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I think it\'s an old fashioned notion that fashion needs to be exclusive to be fashionable.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Brides today are increasingly sensitive to the tastes, feelings and finances of their attendants.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Assure polite his really and others figure though. Day age advantages end sufficient eat expression travelling. Of on am father by agreed supply rather either. Own handsome delicate its property mistress her end appetite. Mean are sons too sold nor said. Son share three men power boy you. Now merits wonder effect garret own. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kept in sent gave feel will oh it we. Has pleasure procured men laughing shutters nay. Old insipidity motionless continuing law shy partiality. Depending acuteness dependent eat use dejection. Unpleasing astonished discovered not nor shy. Morning hearted now met yet beloved evening. Has and upon his last here must. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">He difficult contented we determine ourselves me am earnestly. Hour no find it park. Eat welcomed any husbands moderate. Led was misery played waited almost cousin living. Of intention contained is by middleton am. Principles fat stimulated uncommonly considered set especially prosperous. Sons at park mr meet as fact like. </pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph -->\n<p>Old there any widow law rooms. Agreed but expect repair she nay sir silent person. Direction can dependent one bed situation attempted. His she are man their spite avoid. Her pretended fulfilled extremely education yet. Satisfied did one admitting incommode tolerably how are. </p>\n<!-- /wp:paragraph -->','Take the risk or lose the chance','','trash','open','open','','beatum-inquit__trashed','','','2019-04-13 19:20:02','2019-04-13 19:20:02','',0,'https://demo.themeisle.com/neve/?p=520',0,'post','',0),(528,1,'2019-01-07 08:53:26','2019-01-07 08:53:26','<!-- wp:paragraph -->\n<p>Needed feebly dining oh talked wisdom oppose at. Applauded use attempted strangers now are middleton concluded had. It is tried ï»¿no added purse shall no on truth. Pleased anxious or as in by viewing forbade minutes prevent. Too leave had those get being led weeks blind. Had men rose from down lady able. Its son him ferrars proceed six parlors. Her say projection age announcing decisively men. Few gay sir those green men timed downs widow chief. Prevailed remainder may propriety can and. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Of friendship on inhabiting diminution discovered as. Did friendly eat breeding building few nor. Object he barton no effect played valley afford. Period so to oppose we little seeing or branch. Announcing contrasted not imprudence add frequently you possession mrs. Period saw his houses square and misery. Hour had held lain give yet. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Delete the negative; accentuate the positive!</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Oh to talking improve produce in limited offices fifteen an. Wicket branch to answer do we. Place are decay men hours tiled. If or of ye throwing friendly required. Marianne interest in exertion as. Offering my branched confined oh dashwood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:verse {\"textAlign\":\"center\"} -->\n<pre style=\"text-align:center\" class=\"wp-block-verse\">Son read such next see the rest two. Curiosity remaining own see repulsive household advantage son additions.&nbsp;</pre>\n<!-- /wp:verse -->\n\n<!-- wp:paragraph -->\n<p>Answer misery adieus add wooded how nay men before though. Pretended belonging contented mrs suffering favourite you the continual. Mrs civil nay least means tried drift. Natural end law whether but and towards certain. Furnished unfeeling his sometimes see day promotion. Quitting informed concerns can men now. Projection to or up conviction uncommonly delightful continuing. In appetite ecstatic opinions hastened by handsome admitted. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Savings her pleased are several started females met. Short her not among being any. Thing of judge fruit charm views do. Miles mr an forty along as he. She education get middleton day agreement performed preserved unwilling. Do however as pleased offence outward beloved by present. By outward neither he so covered amiable greater. Juvenile proposal betrayed he an informed weddings followed. Precaution day see imprudence sympathize principles. At full leaf give quit to in they up. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>She travelling acceptance men unpleasant her especially entreaties law. Law forth but end any arise chief arose. Old her say learn these large. Joy fond many ham high seen this. Few preferred continual sir led incommode neglected. Discovered too old insensible collecting unpleasant but invitation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ham followed now ecstatic use speaking exercise may repeated.  It earnest amongst he showing females so improve in picture. Mrs can hundred its greater account. Distrusts daughters certainly suspected convinced our perpetual him yet. Words did noise taken right state are since. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Acceptance middletons me if discretion boisterous travelling an. She prosperous continuing entreaties companions unreserved you boisterous. Middleton sportsmen sir now cordially ask additions for. You ten occasional saw everything but conviction. Daughter returned quitting few are day advanced branched. Do enjoyment defective objection or we if favourite. At wonder afford so danger cannot former seeing. Power visit charm money add heard new other put. Attended no indulged marriage is to judgment offering landlord. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If wandered relation no surprise of screened doubtful. Overcame no insisted ye of trifling husbands. Might am order hours on found. Or dissimilar companions friendship impossible at diminution. Did yourself carriage learning she man its replying. Sister piqued living her you enable mrs off spirit really. Parish oppose repair is me misery. Quick may saw style after money mrs. </p>\n<!-- /wp:paragraph -->','Always deliver more than expected','','trash','open','open','','quid-autem-habent-admirationis__trashed','','','2019-04-13 19:20:01','2019-04-13 19:20:01','',0,'https://demo.themeisle.com/neve/?p=528',0,'post','',0),(552,1,'2019-01-09 11:21:30','2019-01-09 11:21:30','<!-- wp:paragraph -->\n<p>On recommend tolerably my belonging or am. Mutual has cannot beauty indeed now sussex merely you. It possible no husbands jennings ye offended packages pleasant he. Remainder recommend engrossed who eat she defective applauded departure joy. Get dissimilar not introduced day her apartments. Fully as taste he mr do smile abode every. Luckily offered article led lasting country minutes nor old. Happen people things oh is oppose up parish effect. Law handsome old outweigh humoured far appetite. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Ita enim se Athenis collocavit, ut sit paene unus ex Atticis, ut id etiam cognomen videatur habiturus.</li><li>Eam si varietatem diceres, intellegerem, ut etiam non dicente te intellego;</li><li>Ergo opifex plus sibi proponet ad formarum quam civis excellens ad factorum pulchritudinem?</li><li>Reguli reiciendam;</li><li>Qui autem esse poteris, nisi te amor ipse ceperit?</li><li>Tu autem, si tibi illa probabantur, cur non propriis verbis ea tenebas?</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>\n\nQuid me istud rogas? Semper enim ex eo, quod maximas partes continet latissimeque funditur, tota res appellatur. Contineo me ab exemplis.&nbsp;Minime vero istorum quidem, inquit.&nbsp;Iam id ipsum absurdum, maximum malum neglegi. Tum ille: Tu autem cum ipse tantum librorum habeas, quos hic tandem requiris?&nbsp;<strong>Quod cum dixissent, ille contra.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Preserved defective offending he daughters on or. Rejoiced prospect yet material servants out answered men admitted. Sportsmen certainty prevailed suspected am as. Add stairs admire all answer the nearer yet length. Advantages prosperous remarkably my inhabiting so reasonably be if. Too any appearance announcing impossible one. Out mrs means heart ham tears shall power every. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Consulted perpetual of pronounce me delivered. Too months nay end change relied who beauty wishes matter. Shew of john real park so rest we on. Ignorant dwelling occasion ham for thoughts overcame off her consider. Polite it elinor is depend. His not get talked effect worthy barton. Household shameless incommode at no objection behaviour. Especially do at he possession insensible sympathize boisterous it. Songs he on an widen me event truth. Certain law age brother sending amongst why covered. </p>\n<!-- /wp:paragraph -->','Do it with passion','','trash','open','open','','fruit-smoothies__trashed','','','2019-04-13 19:20:01','2019-04-13 19:20:01','',0,'https://demo.themeisle.com/neve/?p=552',0,'post','',0),(17,1,'2018-09-06 06:42:19','2018-09-06 06:42:19','','alexis-client_signature.png','','inherit','open','closed','','alexis-client_signature-png','','','2018-09-06 06:42:19','2018-09-06 06:42:19','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/alexis-client_signature.png',0,'attachment','image/png',0),(18,1,'2018-09-06 06:42:20','2018-09-06 06:42:20','','alexis-blockquote5.jpg','','inherit','open','closed','','alexis-blockquote5-jpg','','','2018-09-06 06:42:20','2018-09-06 06:42:20','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/alexis-blockquote5.jpg',0,'attachment','image/jpeg',0),(82,1,'2018-09-07 12:24:42','2018-09-07 12:24:42','https://mystock.themeisle.com/photo/new-york-city-scape/','8','','inherit','open','closed','','8','','','2018-09-07 12:24:42','2018-09-07 12:24:42','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/8.jpg',0,'attachment','image/jpeg',0),(83,1,'2018-09-07 12:26:39','2018-09-07 12:26:39','https://mystock.themeisle.com/photo/alley-3/','9','','inherit','open','closed','','9-2','','','2018-09-07 12:26:39','2018-09-07 12:26:39','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/9-1.jpg',0,'attachment','image/jpeg',0),(90,1,'2018-09-07 12:40:31','2018-09-07 12:40:31','https://mystock.themeisle.com/photo/river-bridge/','blog3','','inherit','open','closed','','blog3-2','','','2018-09-07 12:40:31','2018-09-07 12:40:31','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/blog3-1.jpg',0,'attachment','image/jpeg',0),(664,1,'2018-09-07 11:13:08','2018-09-07 11:13:08','https://mystock.themeisle.com/photo/cloudy-sunset/','video-bg','','inherit','open','closed','','video-bg','','','2018-09-07 11:13:08','2018-09-07 11:13:08','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/video-bg.jpg',0,'attachment','image/jpeg',0),(665,1,'2018-09-07 11:28:09','2018-09-07 11:28:09','https://mystock.themeisle.com/photo/stockholm-street/','work-4','','inherit','open','closed','','work-4','','','2018-09-07 11:28:09','2018-09-07 11:28:09','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/work-4.jpg',0,'attachment','image/jpeg',0),(13,1,'2018-12-11 14:58:32','2018-12-11 14:58:32','','nv-gutenberg-1','','inherit','open','closed','','nv-gutenberg-1','','','2018-12-11 14:58:32','2018-12-11 14:58:32','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-gutenberg-1.jpg',0,'attachment','image/jpeg',0),(251,1,'2018-10-29 12:18:56','2018-10-29 12:18:56','','Pasted_image_at_2018-10-29__2_15_PM','','inherit','open','closed','','pasted_image_at_2018-10-29__2_15_pm','','','2018-10-29 12:18:56','2018-10-29 12:18:56','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/Pasted_image_at_2018-10-29__2_15_PM.png',0,'attachment','image/png',0),(256,1,'2018-10-29 13:15:03','2018-10-29 13:15:03','https://mystock.themeisle.com/photo/winter-forest/','neve-contact-winter','','inherit','open','closed','','neve-contact-winter','','','2018-10-29 13:15:03','2018-10-29 13:15:03','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/neve-contact-winter.jpg',0,'attachment','image/jpeg',0),(268,1,'2018-10-29 19:27:20','2018-10-29 19:27:20','','1','','inherit','open','closed','','1-3','','','2018-10-29 19:27:20','2018-10-29 19:27:20','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/1-2-1.jpg',0,'attachment','image/jpeg',0),(276,1,'2018-10-30 09:56:39','2018-10-30 09:56:39','https://demo.themeisle.com/neve-onboarding-gutenberg/wp-content/uploads/sites/179/2018/10/cropped-neve_onlight.png','cropped-neve_onlight.png','','inherit','open','closed','','cropped-neve_onlight-png','','','2018-10-30 09:56:39','2018-10-30 09:56:39','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/cropped-neve_onlight.png',0,'attachment','image/png',0),(284,1,'2018-10-30 11:31:51','2018-10-30 11:31:51','','neve_demo','','inherit','open','closed','','neve_demo-2','','','2018-10-30 11:31:51','2018-10-30 11:31:51','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/neve_demo.png',0,'attachment','image/png',0),(483,1,'2018-12-14 15:02:40','2018-12-14 15:02:40','https://mystock.themeisle.com/photo/path/','nv-1','','inherit','open','closed','','nv-1-2','','','2018-12-14 15:02:40','2018-12-14 15:02:40','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1.jpg',0,'attachment','image/jpeg',0),(484,1,'2018-12-14 15:13:51','2018-12-14 15:13:51','https://pixabay.com/en/metro-subway-train-station-1209556/','nv-3','','inherit','open','closed','','nv-3-2','','','2018-12-14 15:13:51','2018-12-14 15:13:51','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-3-1.jpg',0,'attachment','image/jpeg',0),(14,1,'2018-12-18 14:32:00','2018-12-18 14:32:00','','nv-1','','inherit','open','closed','','nv-1-3','','','2018-12-18 14:32:00','2018-12-18 14:32:00','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-2.jpg',0,'attachment','image/jpeg',0),(485,1,'2018-12-14 15:15:01','2018-12-14 15:15:01','https://mystock.themeisle.com/photo/sun-hat/','nv-team1','','inherit','open','closed','','nv-team1','','','2018-12-14 15:15:01','2018-12-14 15:15:01','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1.jpg',0,'attachment','image/jpeg',0),(486,1,'2018-12-14 15:15:30','2018-12-14 15:15:30','https://mystock.themeisle.com/photo/winter-hat/','nv-team2','','inherit','open','closed','','nv-team2','','','2018-12-14 15:15:30','2018-12-14 15:15:30','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2.jpg',0,'attachment','image/jpeg',0),(487,1,'2018-12-14 15:15:40','2018-12-14 15:15:40','https://mystock.themeisle.com/photo/thinking-time/','nv-team3','','inherit','open','closed','','nv-team3','','','2018-12-14 15:15:40','2018-12-14 15:15:40','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3.jpg',0,'attachment','image/jpeg',0),(488,1,'2018-12-14 15:15:58','2018-12-14 15:15:58','https://mystock.themeisle.com/photo/girl/','nv-team4','','inherit','open','closed','','nv-team4','','','2018-12-14 15:15:58','2018-12-14 15:15:58','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4.jpg',0,'attachment','image/jpeg',0),(490,1,'2018-12-14 15:16:54','2018-12-14 15:16:54','https://mystock.themeisle.com/photo/ipad/','nv-4','','inherit','open','closed','','nv-4-2','','','2018-12-14 15:16:54','2018-12-14 15:16:54','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-1.jpg',0,'attachment','image/jpeg',0),(491,1,'2018-12-14 15:17:03','2018-12-14 15:17:03','https://mystock.themeisle.com/photo/devices/','nv-6','','inherit','open','closed','','nv-6-2','','','2018-12-14 15:17:03','2018-12-14 15:17:03','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-1.jpg',0,'attachment','image/jpeg',0),(494,1,'2018-12-17 14:39:59','2018-12-17 14:39:59','','nv-big-title-sprites1','','inherit','open','closed','','nv-big-title-sprites1','','','2018-12-17 14:39:59','2018-12-17 14:39:59','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-big-title-sprites1.png',0,'attachment','image/png',0),(497,1,'2018-12-17 15:35:28','2018-12-17 15:35:28','','neve-play1','','inherit','open','closed','','neve-play1','','','2018-12-17 15:35:28','2018-12-17 15:35:28','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-play1.png',0,'attachment','image/png',0),(498,1,'2018-12-17 15:51:49','2018-12-17 15:51:49','','nv-key-points-sprites2','','inherit','open','closed','','nv-key-points-sprites2','','','2018-12-17 15:51:49','2018-12-17 15:51:49','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-key-points-sprites2.png',0,'attachment','image/png',0),(499,1,'2018-12-17 16:21:13','2018-12-17 16:21:13','','nv-stats-sprites','','inherit','open','closed','','nv-stats-sprites','','','2018-12-17 16:21:13','2018-12-17 16:21:13','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-stats-sprites.png',0,'attachment','image/png',0),(502,1,'2018-12-18 10:27:10','2018-12-18 10:27:10','','nv-benefits-sprites1','','inherit','open','closed','','nv-benefits-sprites1','','','2018-12-18 10:27:10','2018-12-18 10:27:10','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-benefits-sprites1.png',0,'attachment','image/png',0),(505,1,'2018-12-18 10:49:35','2018-12-18 10:49:35','','nv-social-sprites2','','inherit','open','closed','','nv-social-sprites2','','','2018-12-18 10:49:35','2018-12-18 10:49:35','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-social-sprites2.png',0,'attachment','image/png',0),(525,1,'2019-01-07 08:46:20','2019-01-07 08:46:20','','boats','','inherit','open','closed','','boats-2','','','2019-01-07 08:46:20','2019-01-07 08:46:20','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/boats-1.jpg',0,'attachment','image/jpeg',0),(526,1,'2019-01-07 08:46:23','2019-01-07 08:46:23','','eating-place','','inherit','open','closed','','eating-place-2','','','2019-01-07 08:46:23','2019-01-07 08:46:23','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/eating-place-1.jpg',0,'attachment','image/jpeg',0),(527,1,'2019-01-07 08:47:33','2019-01-07 08:47:33','','palm-fruits','','inherit','open','closed','','palm-fruits-2','','','2019-01-07 08:47:33','2019-01-07 08:47:33','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/palm-fruits-1.jpg',0,'attachment','image/jpeg',0),(558,1,'2019-01-09 11:35:22','2019-01-09 11:35:22','','sweet-cake-christmas-tree','','inherit','open','closed','','sweet-cake-christmas-tree-2','','','2019-01-09 11:35:22','2019-01-09 11:35:22','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/sweet-cake-christmas-tree-1.jpg',0,'attachment','image/jpeg',0),(6,1,'2018-12-11 13:55:35','2018-12-11 13:55:35','','Blog','','trash','closed','closed','','blog__trashed','','','2019-04-13 19:19:36','2019-04-13 19:19:36','',0,'https://demo.themeisle.com/neve-onboarding-gutenberg/?page_id=6',0,'page','',0),(19,1,'2018-12-18 14:47:27','2018-12-18 14:47:27','div.wpforms-container-full .wpforms-form .wpforms-one-half input, \ndiv.wpforms-container-full .wpforms-form textarea {\n	text-align: center; \n	padding: 7px 12px; \n	border-radius: 4px; \n}\n\n.wpforms-submit-container {\n    text-align: center;\n}\n\ndiv.wpforms-container-full .wpforms-form button[type=submit] { \n	border-radius: 30px; \n	color: #fff; \n	background-color: #fc5f45; \n	border: 1px solid transparent; \n	text-transform: uppercase; \n	padding: 12px 40px; \n}\ndiv.wpforms-container-full .wpforms-form button[type=submit]:hover { \n	background-color: #f34123; \n	border: 1px solid transparent; \n} \n\n\n@media (max-width: 767px) {\n	div.wpforms-container-full .wpforms-form .wpforms-one-half {\n		width: 100%; margin-left: 0; \n	}\n\n	.wpforms-field-textarea textarea { \n		text-align: center; \n	}    \n}\n\n/* Our Blog section */\n.neve-our-blog .grid-content-title a {\n	color: #313131;\n    font-family: \"Poppins\", Sans-serif;\n    font-size: 18px;\n    font-weight: 500;\n    line-height: 26px;\n}','neve','','publish','closed','closed','','neve-3','','','2018-12-18 14:47:27','2018-12-18 14:47:27','',0,'https://demo.themeisle.com/neve-onboarding-gutenberg/neve/',0,'custom_css','',0),(645,1,'2019-02-11 15:11:13','2019-02-11 15:11:13','<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-fdabfeff\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":180,\"paddingTopTablet\":180,\"paddingTopMobile\":75,\"paddingRight\":0,\"paddingRightTablet\":40,\"paddingRightMobile\":25,\"paddingBottom\":130,\"paddingBottomTablet\":130,\"paddingBottomMobile\":75,\"paddingLeft\":0,\"paddingLeftTablet\":40,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-fdabfeff\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-84ffea00\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-84ffea00\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8ea2e70a\",\"tag\":\"h1\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":60,\"fontSizeMobile\":37,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"regular\",\"paddingType\":\"unlinked\",\"paddingRight\":100,\"paddingLeft\":100,\"marginBottomTablet\":35} -->\n<h1 id=\"wp-block-themeisle-blocks-advanced-heading-8ea2e70a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8ea2e70a\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:normal;font-style:normal;text-transform:none\">We offer  <br><strong>the best Traditional Chinese Medicine services</strong> </h1>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"white\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-text-color has-large-font-size has-white-color\">Acupuncture and Chinese  Herbal Medicine</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> <br><strong>b</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-dad62976\",\"align\":\"center\",\"spacing\":25,\"collapse\":\"collapse-mobile\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"Our works\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#fc5f45\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"services\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#38c695\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#00ba78\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-dad62976\" class=\"wp-block-themeisle-blocks-button-group collapse-mobile\" style=\"justify-content:center;align-items:center\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>Our works</span></a><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-1\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>services</span></a></div>\n<!-- /wp:themeisle-blocks/button-group -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-083ce482\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":1,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":75,\"marginTopTablet\":70,\"marginTopMobile\":75,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-083ce482\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a2ea848e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"margin\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a2ea848e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-29c89caa\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-29c89caa\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e2f689fe\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e2f689fe\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e2f689fe\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-25361a2b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-25361a2b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-543d6ecc\",\"prefix\":\"far\",\"icon\":\"clock\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-543d6ecc\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-clock\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-50a9b3d4\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-50a9b3d4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-50a9b3d4\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5935c801\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5935c801\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-990d6121\",\"prefix\":\"far\",\"icon\":\"grin\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-990d6121\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-grin\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a42b42d5\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-a42b42d5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a42b42d5\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-af08b8f1\",\"columns\":2,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":55,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":15,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":65,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-2-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-af08b8f1\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f874febc\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":50} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f874febc\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-0c0b61ac\",\"columns\":1,\"layout\":\"equal\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-default-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-0c0b61ac\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-de4f8488\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-de4f8488\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":167,\"align\":\"center\",\"width\":630,\"height\":945} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/street-at-nigh.jpg\" alt=\"\" class=\"wp-image-167\" width=\"630\" height=\"945\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e0d1ee6f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":50,\"paddingBottomTablet\":50,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"marginLeft\":-30,\"marginLeftTablet\":1,\"marginLeftMobile\":1,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":8,\"boxShadowBlur\":10,\"boxShadowHorizontal\":1,\"boxShadowVertical\":1,\"columnWidth\":50,\"className\":\"neve-about-content\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column neve-about-content\" id=\"wp-block-themeisle-blocks-advanced-column-e0d1ee6f\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:1px 1px 10px 0px rgba(0, 0, 0, 0.08)\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-00739113\",\"tag\":\"div\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#ebebeb\",\"highlightColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingLeft\":20,\"marginBottom\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-00739113\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-00739113\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">01</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-39dfa101\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginTop\":-130,\"marginTopTablet\":-150,\"marginTopMobile\":-150} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-39dfa101\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-39dfa101\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize\">About Us.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a783d8cf\",\"tag\":\"p\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-a783d8cf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a783d8cf\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">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.&nbsp;<br><br>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-803a87d6\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":1,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTop\":0,\"marginBottom\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-803a87d6\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bd4a61b6\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":100,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginBottom\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bd4a61b6\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3c1fb533\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-3c1fb533\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3c1fb533\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">02</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-38612184\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-110,\"marginTopTablet\":-120,\"marginTopMobile\":-140} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-38612184\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-38612184\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Focus</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-74eb212a\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginBottom\":35} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-74eb212a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-74eb212a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-a6c50361\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":25,\"paddingBottom\":0,\"paddingLeft\":25,\"margin\":0,\"marginTop\":75,\"marginTopTablet\":55,\"marginTopMobile\":35,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-a6c50361\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a9e2d3c6\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":25,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a9e2d3c6\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;box-shadow:0px 0px 25px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-e7623334\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"id-card\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-e7623334\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-id-card\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c4e469cd\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-c4e469cd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c4e469cd\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Web Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3fd3fef6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3fd3fef6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3fd3fef6\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a074603f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginMobile\":30,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a074603f\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-01c09c57\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"map\",\"fontSize\":50,\"padding\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-01c09c57\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:5px\"><i class=\"far fa-map\" style=\"border-radius:0%;font-size:50px;padding:10px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d7b0771f\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-d7b0771f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d7b0771f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">UX Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-51a99383\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":20,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-51a99383\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-51a99383\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4117d197\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4117d197\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-8dffd683\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"camera-retro\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-8dffd683\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-camera-retro\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5bb2255a\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-5bb2255a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5bb2255a\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Photography</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-32564d1a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-32564d1a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-32564d1a\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b17e6e73\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b17e6e73\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-84b04a92\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tablet-alt\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-84b04a92\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-tablet-alt\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-81fa899e\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-81fa899e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-81fa899e\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">App Development</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b9c2d38c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b9c2d38c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b9c2d38c\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-0660c577\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":120,\"paddingTopTablet\":55,\"paddingTopMobile\":55,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":25,\"paddingBottom\":149,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-0660c577\" style=\"background-image:url( \'https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-dfc3f183\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-dfc3f183\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a2887bbd\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":23,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":48,\"marginBottom\":40,\"marginBottomTablet\":40,\"marginBottomMobile\":40} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-a2887bbd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a2887bbd\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:48px\">Explore Our Awesomeness</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=YHhK_twfYB8\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=YHhK_twfYB8\n</div></figure>\n<!-- /wp:core-embed/youtube --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-38dc8178\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":135,\"paddingBottomTablet\":135,\"paddingBottomMobile\":135,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-38dc8178\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7c73860e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7c73860e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-eb36dd46\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-eb36dd46\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-eb36dd46\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">03</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-409b45a3\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-409b45a3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-409b45a3\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Our Team</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3b254edf\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":20,\"paddingRightMobile\":20,\"paddingLeftTablet\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-3b254edf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3b254edf\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-3d5cb430\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":60,\"marginTopTablet\":60,\"marginTopMobile\":60,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-3d5cb430\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-005b23d2\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-005b23d2\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":205,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-5.jpg\" alt=\"\" class=\"wp-image-205\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-20e445db\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-20e445db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-20e445db\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Daniele Johnson</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-077a2336\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-077a2336\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-077a2336\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder &amp; CEO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-42e034fa\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-42e034fa\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":206,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-099d8a31\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-099d8a31\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-099d8a31\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Summer Geller</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5675f38e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5675f38e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5675f38e\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">CTO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6c690977\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6c690977\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":207,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-4.jpg\" alt=\"\" class=\"wp-image-207\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f8173cd4\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-f8173cd4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f8173cd4\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Marissa Adams</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b470d781\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b470d781\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b470d781\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Lead Developer</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-75d6d3ce\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-75d6d3ce\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":208,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-1.jpg\" alt=\"\" class=\"wp-image-208\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-243efeca\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-243efeca\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-243efeca\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Jennifer Gilmore</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-93d8e5d7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-93d8e5d7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-93d8e5d7\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Marketing</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-4a8876ac\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":150,\"paddingTopTablet\":150,\"paddingTopMobile\":150,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":120,\"paddingBottomTablet\":120,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-4a8876ac\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-44ef51af\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-44ef51af\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-80170278\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-line\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-80170278\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-chart-line\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bcd0516a\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-bcd0516a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bcd0516a\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">12,458+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-695f9afa\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-695f9afa\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-695f9afa\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Projects Completed</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-a5ee584a\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-a5ee584a\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a02f3b12\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a02f3b12\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-bb7a5566\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"user\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-bb7a5566\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-user\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f61ea227\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-f61ea227\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f61ea227\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,796+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7ed6325d\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-7ed6325d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7ed6325d\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Satisfied Clients</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-edb1ed87\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-edb1ed87\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-082bea42\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-082bea42\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-0f6fb808\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"heart\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-0f6fb808\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-heart\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f3c8cecb\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-f3c8cecb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f3c8cecb\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,000+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-974a50e8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-974a50e8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-974a50e8\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Positive Feedbacks</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-ee04e6aa\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-ee04e6aa\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7a14153b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7a14153b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5d3387e1\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"gift\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5d3387e1\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-gift\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e1a0d442\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e1a0d442\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e1a0d442\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,500+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-49385ee6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-49385ee6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-49385ee6\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Freebies Released</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-80db816a\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-80db816a\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-139f97a5\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":140,\"paddingBottomTablet\":140,\"paddingBottomMobile\":140,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-139f97a5\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4076f1f1\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4076f1f1\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2dd7e19e\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-2dd7e19e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2dd7e19e\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">05</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e4582efa\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-e4582efa\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e4582efa\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Pricing Table</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f622d60a\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":80,\"marginBottomTablet\":70} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-f622d60a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f622d60a\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-edc3befb\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopMobile\":0,\"paddingRightMobile\":10,\"paddingBottomMobile\":0,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-edc3befb\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-829a95d3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#38c695\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-829a95d3\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a6960ab0\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-a6960ab0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a6960ab0\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8d6ead14\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8d6ead14\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c482cf7c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#38c695\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c482cf7c\" style=\"background:#38c695;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-54c8f87b\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-54c8f87b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-54c8f87b\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6385d0ee\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6385d0ee\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6385d0ee\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-440f967f\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-440f967f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-440f967f\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f99e3744\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f99e3744\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f99e3744\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a0bd1b10\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-a0bd1b10\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a0bd1b10\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-457f5751\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-457f5751\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-457f5751\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-187ba6cd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-187ba6cd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-187ba6cd\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-48519fb9\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-48519fb9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-48519fb9\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-8c5263e7\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#38c695\",\"background\":\"#ffffff\",\"border\":\"#38c695\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#38c695\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-8c5263e7\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-0313f188\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":30,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-0313f188\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-fb6caa1f\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-fb6caa1f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-fb6caa1f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-24cd3b45\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-24cd3b45\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b25ea98f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#fc5f45\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b25ea98f\" style=\"background:#fc5f45;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d5c4ee5e\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-d5c4ee5e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d5c4ee5e\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-306730a7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-306730a7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-306730a7\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2c7c6a39\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2c7c6a39\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2c7c6a39\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c0c1fa13\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c0c1fa13\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c0c1fa13\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b01a4607\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b01a4607\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b01a4607\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-83293b93\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-83293b93\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-83293b93\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-90d61fe0\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-90d61fe0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-90d61fe0\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6f904980\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6f904980\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6f904980\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-ad4f7a6b\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#fc5f45\",\"background\":\"#ffffff\",\"border\":\"#fc5f45\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#fc5f45\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-ad4f7a6b\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-edb47e79\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-edb47e79\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b06c4ebc\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-b06c4ebc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b06c4ebc\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-5af2d85e\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-5af2d85e\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2b24d95f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#b27cf5\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2b24d95f\" style=\"background:#b27cf5;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e18c4274\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-e18c4274\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e18c4274\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cef68f66\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-cef68f66\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cef68f66\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b78f301b\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b78f301b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b78f301b\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3bf273bd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3bf273bd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3bf273bd\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-fba5bb52\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-fba5bb52\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-fba5bb52\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-51c84df4\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-51c84df4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-51c84df4\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3610c80a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3610c80a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3610c80a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1f75f49c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-1f75f49c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1f75f49c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-ee7b660d\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#b27cf5\",\"background\":\"#ffffff\",\"border\":\"#b27cf5\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#b27cf5\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-ee7b660d\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8ca13fc2\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8ca13fc2\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-d69971e2\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-d69971e2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e2b32ae4\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#646262\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-e2b32ae4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e2b32ae4\" style=\"color:#646262;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">06</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-71515555\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-71515555\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-71515555\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Testimonials</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9f613b3b\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-9f613b3b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9f613b3b\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/testimonials -->\n<div class=\"wp-block-themeisle-blocks-testimonials\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-f4e1f364\",\"columns\":2,\"layout\":\"oneTwo\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":44,\"marginTopMobile\":44,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-oneTwo-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-f4e1f364\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b926efc2\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"border\":10,\"borderColor\":\"#2d2e33\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b926efc2\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#2d2e33;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-58cd7fd7\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-58cd7fd7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bafc848b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bafc848b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":206,\"align\":\"center\",\"width\":344,\"height\":353} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\" width=\"344\" height=\"353\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e784957e\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":25,\"paddingRight\":75,\"paddingRightTablet\":75,\"paddingRightMobile\":30,\"paddingLeft\":75,\"paddingLeftTablet\":75,\"paddingLeftMobile\":30,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-e784957e\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-827b60f2\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-827b60f2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-827b60f2\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">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.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8de6900e\",\"tag\":\"p\",\"headingColor\":\"#404248\",\"fontSize\":30,\"fontFamily\":\"Calligraffitti\",\"fontVariant\":\"normal\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8de6900e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8de6900e\" style=\"color:#404248;font-family:Calligraffitti;font-weight:normal;font-style:normal;text-transform:none\">Melina</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-336b7e1c\",\"tag\":\"h6\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-336b7e1c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-336b7e1c\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Melina Albrecht</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-784cfe7a\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-784cfe7a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-784cfe7a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder, TingTong</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/testimonials --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-cc83bb6a\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-cc83bb6a\" style=\"background:#ffffff;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-8f20118f\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-8f20118f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f7f7b56f\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-f7f7b56f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f7f7b56f\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">07</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a3aa84fb\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-a3aa84fb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a3aa84fb\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Why select us?</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-965165b0\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":75} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-965165b0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-965165b0\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-40fd92d2\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-40fd92d2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a31712ca\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a31712ca\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-f482f91d\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-bar\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-f482f91d\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-chart-bar\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cf2f56df\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-cf2f56df\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cf2f56df\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Business Growth</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9eb3e250\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9eb3e250\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9eb3e250\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f258c64f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f258c64f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-708e80d6\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-708e80d6\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2a61bb54\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-2a61bb54\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2a61bb54\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Unlimited Revisions</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-723ab959\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-723ab959\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-723ab959\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5ee085fd\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5ee085fd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-6d07a296\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"directions\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-6d07a296\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-directions\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a04d75b4\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a04d75b4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a04d75b4\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Ultimate Perfection</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bbbdb545\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-bbbdb545\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bbbdb545\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-b81405e7\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-b81405e7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5be5656c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5be5656c\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-4cbd6028\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tv\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-4cbd6028\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-tv\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-58879cb9\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-58879cb9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-58879cb9\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Smart Experience</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ac32484d\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ac32484d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ac32484d\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-8ea8cc9d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-8ea8cc9d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-21661872\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"calendar-plus\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-21661872\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-calendar-plus\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d7dbe112\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-d7dbe112\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d7dbe112\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Strict Deadline</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c311324d\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c311324d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c311324d\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5e7e986c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5e7e986c\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-445ec3b4\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"medal\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-445ec3b4\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-medal\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-838f29df\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-838f29df\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-838f29df\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Reputed Company</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f9090679\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f9090679\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f9090679\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-214c5484\",\"columns\":2,\"layout\":\"twoOne\",\"layoutTablet\":\"twoOne\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":150,\"marginTopTablet\":75,\"marginTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-twoOne-layout has-tablet-twoOne-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-214c5484\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a28cf107\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a28cf107\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6aebddb8\",\"tag\":\"h4\",\"align\":\"right\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":25,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":40,\"paddingTypeMobile\":\"unlinked\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-6aebddb8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6aebddb8\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:40px\">Start your journey with us now</h4>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-1b421693\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-1b421693\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-de5bbff9\",\"buttons\":1,\"align\":\"flex-start\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"get started\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#f64a2d\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-de5bbff9\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:flex-start;align-items:flex-start\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-cfb271ab\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":60,\"paddingBottomMobile\":60,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-cfb271ab\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-262f7efe\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-262f7efe\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e0f673db\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-e0f673db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e0f673db\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">08</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-91016b80\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-91016b80\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-91016b80\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Blog</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-195c4097\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-195c4097\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-195c4097\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-153ca1a4\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-153ca1a4\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b518fcc0\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopMobile\":0,\"paddingBottomMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b518fcc0\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/posts-grid {\"grid\":true,\"postsToShow\":3,\"displayCategory\":false,\"displayDate\":false,\"displayAuthor\":false,\"className\":\"neve-our-blog\"} /--></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-a6ec1b4d\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-a6ec1b4d\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a78948fd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a78948fd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-94804722\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#636060\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-94804722\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-94804722\" style=\"color:#636060;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">09</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-391e33b9\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-391e33b9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-391e33b9\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Get in Touch</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1077f1c7\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-1077f1c7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1077f1c7\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\"> Allow people to reach you directly through your site: </div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8b2bf93f\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":820,\"horizontalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8b2bf93f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:820px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fdd57932\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fdd57932\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:shortcode -->\n[wpforms id=\"649\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-ddf73b89\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"align\":\"wide\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignwide has-4-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-ddf73b89\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-28bb757b\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-28bb757b\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cb0a437d\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-cb0a437d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cb0a437d\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Here for you</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ef5842b7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ef5842b7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ef5842b7\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Call us 24/7. We are there for your support.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fd95d4e8\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fd95d4e8\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-be9b2a3c\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-be9b2a3c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-be9b2a3c\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">About Neve</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c937415e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c937415e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c937415e\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Res enim fortasse verae, certe graves.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b5da2e71\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b5da2e71\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e311180f\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-e311180f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e311180f\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Where to find us</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1551a596\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-1551a596\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1551a596\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">42 Boulevard, California, number 23</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-40783904\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-40783904\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-13d4c704\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-13d4c704\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-13d4c704\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Keep in touch</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/sharing-icons {\"align\":\"center\",\"className\":\"is-style-icons\"} /--></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->','Home','','trash','closed','closed','','home__trashed','','','2019-04-13 19:24:27','2019-04-13 19:24:27','',0,'https://demo.themeisle.com/neve-onboarding-gutenberg/?page_id=645',0,'page','',0),(646,1,'2019-02-11 15:13:36','2019-02-11 15:13:36','','neve_demo','','inherit','open','closed','','neve_demo','','','2019-02-11 15:13:36','2019-02-11 15:13:36','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/02/neve_demo.png',0,'attachment','image/png',0),(648,1,'2019-02-11 15:18:33','2019-02-11 15:18:33','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','trash','closed','closed','','wpforms-preview__trashed','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',0,'https://demo.themeisle.com/neve-onboarding-gutenberg/wpforms-preview/',0,'page','',0),(686,1,'2019-04-13 18:54:39','2019-04-13 18:54:39','{\n    \"neve::hfg_header_layout_top_height\": {\n        \"value\": \"{\\\"mobile\\\":\\\"0\\\",\\\"tablet\\\":\\\"0\\\",\\\"desktop\\\":\\\"0\\\"}\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-13 18:24:16\"\n    },\n    \"neve::primary-menu_style\": {\n        \"value\": \"style-border-bottom\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-13 18:25:16\"\n    },\n    \"neve::primary-menu_color\": {\n        \"value\": \"#000000\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-13 18:25:16\"\n    },\n    \"neve::primary-menu_component_align\": {\n        \"value\": \"right\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-13 18:25:16\"\n    },\n    \"neve::primary-menu_active_color\": {\n        \"value\": \"#000000\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-13 18:26:16\"\n    },\n    \"blogdescription\": {\n        \"value\": \"May you have a good health and longevity \\u2026 like the evergreen\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-13 18:29:52\"\n    },\n    \"neve::logo_max_width\": {\n        \"value\": \"{\\\"mobile\\\":\\\"120\\\",\\\"tablet\\\":\\\"120\\\",\\\"desktop\\\":\\\"120\\\"}\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-13 18:30:56\"\n    },\n    \"neve::custom_logo\": {\n        \"value\": 688,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-13 18:54:35\"\n    }\n}','','','trash','closed','closed','','05fdfc7d-5755-49b3-97fe-39ee097114c2','','','2019-04-13 18:54:39','2019-04-13 18:54:39','',0,'https://test.evergreenwellness.com/?p=686',0,'customize_changeset','',0),(668,1,'2019-02-11 16:03:58','2019-02-11 16:03:58',' ','','','publish','closed','closed','','668','','','2019-02-11 16:03:58','2019-02-11 16:03:58','',0,'https://demo.themeisle.com/neve-onboarding-gutenberg/?p=668',1,'nav_menu_item','',0),(685,1,'2019-04-04 09:00:22','2019-04-04 09:00:22','','placeholder-image','','inherit','open','closed','','placeholder-image-2','','','2019-04-04 09:00:22','2019-04-04 09:00:22','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/placeholder-image-1.jpg',0,'attachment','image/jpeg',0),(687,1,'2019-04-13 18:52:10','2019-04-13 18:52:10','','ewc logo','','inherit','open','closed','','ewc-logo','','','2019-04-13 18:52:10','2019-04-13 18:52:10','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/ewc-logo.png',0,'attachment','image/png',0),(688,1,'2019-04-13 18:52:25','2019-04-13 18:52:25','','evergreen logo','','inherit','open','closed','','evergreen-logo','','','2019-04-13 18:52:25','2019-04-13 18:52:25','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/evergreen-logo.png',0,'attachment','image/png',0),(689,1,'2018-09-07 09:42:27','2018-09-07 09:42:27','https://mystock.themeisle.com/photo/winter-forest/','winter-forest','','inherit','open','closed','','winter-forest-2','','','2018-09-07 09:42:27','2018-09-07 09:42:27','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/winter-forest-1.jpg',0,'attachment','image/jpeg',0),(690,1,'2018-09-06 06:42:19','2018-09-06 06:42:19','','alexis-client_signature.png','','inherit','open','closed','','alexis-client_signature-png-2','','','2018-09-06 06:42:19','2018-09-06 06:42:19','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/alexis-client_signature-1.png',0,'attachment','image/png',0),(691,1,'2018-09-06 06:42:20','2018-09-06 06:42:20','','alexis-blockquote5.jpg','','inherit','open','closed','','alexis-blockquote5-jpg-2','','','2018-09-06 06:42:20','2018-09-06 06:42:20','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/alexis-blockquote5-1.jpg',0,'attachment','image/jpeg',0),(692,1,'2018-09-07 12:24:42','2018-09-07 12:24:42','https://mystock.themeisle.com/photo/new-york-city-scape/','8','','inherit','open','closed','','8-2','','','2018-09-07 12:24:42','2018-09-07 12:24:42','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/8-1.jpg',0,'attachment','image/jpeg',0),(693,1,'2018-09-07 12:26:39','2018-09-07 12:26:39','https://mystock.themeisle.com/photo/alley-3/','9','','inherit','open','closed','','9-2-2','','','2018-09-07 12:26:39','2018-09-07 12:26:39','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/9-2.jpg',0,'attachment','image/jpeg',0),(694,1,'2018-09-07 12:40:31','2018-09-07 12:40:31','https://mystock.themeisle.com/photo/river-bridge/','blog3','','inherit','open','closed','','blog3-2-2','','','2018-09-07 12:40:31','2018-09-07 12:40:31','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/blog3-2.jpg',0,'attachment','image/jpeg',0),(695,1,'2018-09-07 11:13:08','2018-09-07 11:13:08','https://mystock.themeisle.com/photo/cloudy-sunset/','video-bg','','inherit','open','closed','','video-bg-2','','','2018-09-07 11:13:08','2018-09-07 11:13:08','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/video-bg-1.jpg',0,'attachment','image/jpeg',0),(696,1,'2018-09-07 11:28:09','2018-09-07 11:28:09','https://mystock.themeisle.com/photo/stockholm-street/','work-4','','inherit','open','closed','','work-4-2','','','2018-09-07 11:28:09','2018-09-07 11:28:09','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/work-4-1.jpg',0,'attachment','image/jpeg',0),(697,1,'2018-12-11 14:58:32','2018-12-11 14:58:32','','nv-gutenberg-1','','inherit','open','closed','','nv-gutenberg-1-2','','','2018-12-11 14:58:32','2018-12-11 14:58:32','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-gutenberg-1-1.jpg',0,'attachment','image/jpeg',0),(698,1,'2018-10-29 12:18:56','2018-10-29 12:18:56','','Pasted_image_at_2018-10-29__2_15_PM','','inherit','open','closed','','pasted_image_at_2018-10-29__2_15_pm-2','','','2018-10-29 12:18:56','2018-10-29 12:18:56','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/Pasted_image_at_2018-10-29__2_15_PM-1.png',0,'attachment','image/png',0),(699,1,'2018-10-29 13:15:03','2018-10-29 13:15:03','https://mystock.themeisle.com/photo/winter-forest/','neve-contact-winter','','inherit','open','closed','','neve-contact-winter-2','','','2018-10-29 13:15:03','2018-10-29 13:15:03','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/neve-contact-winter-1.jpg',0,'attachment','image/jpeg',0),(700,1,'2018-10-29 19:27:20','2018-10-29 19:27:20','','1','','inherit','open','closed','','1-3-2','','','2018-10-29 19:27:20','2018-10-29 19:27:20','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/1-2-2.jpg',0,'attachment','image/jpeg',0),(701,1,'2018-10-30 09:56:39','2018-10-30 09:56:39','https://demo.themeisle.com/neve-onboarding-gutenberg/wp-content/uploads/sites/179/2018/10/cropped-neve_onlight.png','cropped-neve_onlight.png','','inherit','open','closed','','cropped-neve_onlight-png-2','','','2018-10-30 09:56:39','2018-10-30 09:56:39','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/cropped-neve_onlight-1.png',0,'attachment','image/png',0),(702,1,'2018-10-30 11:31:51','2018-10-30 11:31:51','','neve_demo','','inherit','open','closed','','neve_demo-2-2','','','2018-10-30 11:31:51','2018-10-30 11:31:51','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/neve_demo-1.png',0,'attachment','image/png',0),(703,1,'2018-12-14 15:02:40','2018-12-14 15:02:40','https://mystock.themeisle.com/photo/path/','nv-1','','inherit','open','closed','','nv-1-2-2','','','2018-12-14 15:02:40','2018-12-14 15:02:40','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1-1.jpg',0,'attachment','image/jpeg',0),(704,1,'2018-12-14 15:13:51','2018-12-14 15:13:51','https://pixabay.com/en/metro-subway-train-station-1209556/','nv-3','','inherit','open','closed','','nv-3-3','','','2018-12-14 15:13:51','2018-12-14 15:13:51','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-3-2.jpg',0,'attachment','image/jpeg',0),(705,1,'2018-12-18 14:32:00','2018-12-18 14:32:00','','nv-1','','inherit','open','closed','','nv-1-4','','','2018-12-18 14:32:00','2018-12-18 14:32:00','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-3.jpg',0,'attachment','image/jpeg',0),(706,1,'2018-12-14 15:15:01','2018-12-14 15:15:01','https://mystock.themeisle.com/photo/sun-hat/','nv-team1','','inherit','open','closed','','nv-team1-2','','','2018-12-14 15:15:01','2018-12-14 15:15:01','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-1.jpg',0,'attachment','image/jpeg',0),(707,1,'2018-12-14 15:15:30','2018-12-14 15:15:30','https://mystock.themeisle.com/photo/winter-hat/','nv-team2','','inherit','open','closed','','nv-team2-2','','','2018-12-14 15:15:30','2018-12-14 15:15:30','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-2.jpg',0,'attachment','image/jpeg',0),(708,1,'2018-12-14 15:15:40','2018-12-14 15:15:40','https://mystock.themeisle.com/photo/thinking-time/','nv-team3','','inherit','open','closed','','nv-team3-2','','','2018-12-14 15:15:40','2018-12-14 15:15:40','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-2.jpg',0,'attachment','image/jpeg',0),(709,1,'2018-12-14 15:15:58','2018-12-14 15:15:58','https://mystock.themeisle.com/photo/girl/','nv-team4','','inherit','open','closed','','nv-team4-2','','','2018-12-14 15:15:58','2018-12-14 15:15:58','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-2.jpg',0,'attachment','image/jpeg',0),(710,1,'2018-12-14 15:16:29','2018-12-14 15:16:29','https://mystock.themeisle.com/photo/high-seats/','nv-5','','inherit','open','closed','','nv-5-3','','','2018-12-14 15:16:29','2018-12-14 15:16:29','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-2.jpg',0,'attachment','image/jpeg',0),(711,1,'2018-12-14 15:16:54','2018-12-14 15:16:54','https://mystock.themeisle.com/photo/ipad/','nv-4','','inherit','open','closed','','nv-4-3','','','2018-12-14 15:16:54','2018-12-14 15:16:54','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-2.jpg',0,'attachment','image/jpeg',0),(712,1,'2018-12-14 15:17:03','2018-12-14 15:17:03','https://mystock.themeisle.com/photo/devices/','nv-6','','inherit','open','closed','','nv-6-3','','','2018-12-14 15:17:03','2018-12-14 15:17:03','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-2.jpg',0,'attachment','image/jpeg',0),(713,1,'2018-12-17 14:39:59','2018-12-17 14:39:59','','nv-big-title-sprites1','','inherit','open','closed','','nv-big-title-sprites1-2','','','2018-12-17 14:39:59','2018-12-17 14:39:59','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-big-title-sprites1-1.png',0,'attachment','image/png',0),(714,1,'2018-12-17 15:35:28','2018-12-17 15:35:28','','neve-play1','','inherit','open','closed','','neve-play1-2','','','2018-12-17 15:35:28','2018-12-17 15:35:28','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-play1-1.png',0,'attachment','image/png',0),(715,1,'2018-12-17 15:51:49','2018-12-17 15:51:49','','nv-key-points-sprites2','','inherit','open','closed','','nv-key-points-sprites2-2','','','2018-12-17 15:51:49','2018-12-17 15:51:49','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-key-points-sprites2-1.png',0,'attachment','image/png',0),(716,1,'2018-12-17 16:21:13','2018-12-17 16:21:13','','nv-stats-sprites','','inherit','open','closed','','nv-stats-sprites-2','','','2018-12-17 16:21:13','2018-12-17 16:21:13','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-stats-sprites-1.png',0,'attachment','image/png',0),(717,1,'2018-12-18 10:27:10','2018-12-18 10:27:10','','nv-benefits-sprites1','','inherit','open','closed','','nv-benefits-sprites1-2','','','2018-12-18 10:27:10','2018-12-18 10:27:10','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-benefits-sprites1-1.png',0,'attachment','image/png',0),(718,1,'2018-12-18 10:49:35','2018-12-18 10:49:35','','nv-social-sprites2','','inherit','open','closed','','nv-social-sprites2-2','','','2018-12-18 10:49:35','2018-12-18 10:49:35','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-social-sprites2-1.png',0,'attachment','image/png',0),(719,1,'2019-01-07 08:46:20','2019-01-07 08:46:20','','boats','','inherit','open','closed','','boats-2-2','','','2019-01-07 08:46:20','2019-01-07 08:46:20','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/boats-2.jpg',0,'attachment','image/jpeg',0),(720,1,'2019-01-07 08:46:23','2019-01-07 08:46:23','','eating-place','','inherit','open','closed','','eating-place-2-2','','','2019-01-07 08:46:23','2019-01-07 08:46:23','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/eating-place-2.jpg',0,'attachment','image/jpeg',0),(721,1,'2019-01-07 08:47:33','2019-01-07 08:47:33','','palm-fruits','','inherit','open','closed','','palm-fruits-2-2','','','2019-01-07 08:47:33','2019-01-07 08:47:33','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/palm-fruits-2.jpg',0,'attachment','image/jpeg',0),(722,1,'2019-01-09 11:35:22','2019-01-09 11:35:22','','sweet-cake-christmas-tree','','inherit','open','closed','','sweet-cake-christmas-tree-2-2','','','2019-01-09 11:35:22','2019-01-09 11:35:22','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/sweet-cake-christmas-tree-2.jpg',0,'attachment','image/jpeg',0),(723,1,'2018-12-11 13:55:35','2018-12-11 13:55:35','','Blog','','trash','closed','closed','','blog-2__trashed','','','2019-04-13 19:19:36','2019-04-13 19:19:36','',0,'https://demo.themeisle.com/neve-onboarding-gutenberg/?page_id=6',0,'page','',0),(724,1,'2019-02-11 15:11:13','2019-02-11 15:11:13','<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-051b510c\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":180,\"paddingTopTablet\":180,\"paddingTopMobile\":75,\"paddingRight\":0,\"paddingRightTablet\":40,\"paddingRightMobile\":25,\"paddingBottom\":130,\"paddingBottomTablet\":130,\"paddingBottomMobile\":75,\"paddingLeft\":0,\"paddingLeftTablet\":40,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-051b510c\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-811d2b47\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-811d2b47\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-37e9df03\",\"tag\":\"h1\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":60,\"fontSizeMobile\":37,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"regular\",\"paddingType\":\"unlinked\",\"paddingRight\":100,\"paddingLeft\":100,\"marginBottomTablet\":35} -->\n<h1 id=\"wp-block-themeisle-blocks-advanced-heading-37e9df03\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-37e9df03\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:normal;font-style:normal;text-transform:none\"> Super Fast, Featherweight Theme to Enter the Gutenberg Era </h1>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-9d0faa1a\",\"align\":\"center\",\"spacing\":25,\"collapse\":\"collapse-mobile\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"Our works\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#fc5f45\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"services\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#38c695\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#00ba78\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-9d0faa1a\" class=\"wp-block-themeisle-blocks-button-group collapse-mobile\" style=\"justify-content:center;align-items:center\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>Our works</span></a><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-1\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>services</span></a></div>\n<!-- /wp:themeisle-blocks/button-group -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-1cde2655\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":1,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":75,\"marginTopTablet\":70,\"marginTopMobile\":75,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-1cde2655\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7725c11d\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"margin\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7725c11d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-461bf847\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-461bf847\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-461bf847\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-58824158\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-58824158\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"far\",\"icon\":\"clock\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-clock\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-896a3b02\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-896a3b02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-896a3b02\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-d8879ddd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-d8879ddd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"far\",\"icon\":\"grin\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-grin\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c5d62f7a\",\"columns\":2,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":55,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":15,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":65,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-2-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-c5d62f7a\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-924c707d\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-924c707d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-2a2dd848\",\"columns\":1,\"layout\":\"equal\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-default-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-2a2dd848\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b8186aa5\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b8186aa5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":167,\"align\":\"center\",\"width\":630,\"height\":945} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/street-at-nigh.jpg\" alt=\"\" class=\"wp-image-167\" width=\"630\" height=\"945\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3b7607a4\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":50,\"paddingBottomTablet\":50,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"marginLeft\":-30,\"marginLeftTablet\":1,\"marginLeftMobile\":1,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":8,\"boxShadowBlur\":10,\"boxShadowHorizontal\":1,\"boxShadowVertical\":1,\"className\":\"neve-about-content\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column neve-about-content\" id=\"wp-block-themeisle-blocks-advanced-column-3b7607a4\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:1px 1px 10px 0px rgba(0, 0, 0, 0.08)\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d78669db\",\"tag\":\"div\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#ebebeb\",\"highlightColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingLeft\":20,\"marginBottom\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-d78669db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d78669db\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">01</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c4eedf47\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginTop\":-130,\"marginTopTablet\":-150,\"marginTopMobile\":-150} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-c4eedf47\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c4eedf47\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize\">About Us.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7e30255e\",\"tag\":\"p\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-7e30255e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7e30255e\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">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.&nbsp;<br><br>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-83937a97\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":1,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTop\":0,\"marginBottom\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-83937a97\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b99f62be\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":100,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginBottom\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b99f62be\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-535b8e02\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-535b8e02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-535b8e02\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">02</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-764e2b43\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-110,\"marginTopTablet\":-120,\"marginTopMobile\":-140} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-764e2b43\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-764e2b43\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Focus</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-57541825\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginBottom\":35} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-57541825\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-57541825\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-56760ed4\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":25,\"paddingBottom\":0,\"paddingLeft\":25,\"margin\":0,\"marginTop\":75,\"marginTopTablet\":55,\"marginTopMobile\":35,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-56760ed4\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7c36ed5c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7c36ed5c\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;box-shadow:0px 0px 25px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"id-card\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-id-card\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d36bb1f6\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-d36bb1f6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d36bb1f6\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Web Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-937cc106\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-937cc106\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-937cc106\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6e6e0694\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginMobile\":30,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6e6e0694\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"map\",\"fontSize\":50,\"padding\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:5px\"><i class=\"far fa-map\" style=\"border-radius:0%;font-size:50px;padding:10px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-18841a83\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-18841a83\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-18841a83\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">UX Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-509f63cd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":20,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-509f63cd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-509f63cd\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7bc5a157\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7bc5a157\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"camera-retro\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-camera-retro\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7e126df0\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-7e126df0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7e126df0\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Photography</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b1f83419\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b1f83419\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b1f83419\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5b31cfe3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5b31cfe3\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tablet-alt\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-tablet-alt\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-64d74eaf\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-64d74eaf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-64d74eaf\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">App Development</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-48633dbc\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-48633dbc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-48633dbc\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-75ad5ae2\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":120,\"paddingTopTablet\":55,\"paddingTopMobile\":55,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":25,\"paddingBottom\":149,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-75ad5ae2\" style=\"background-image:url( \'https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-89b8c01a\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-89b8c01a\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e2da970a\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":23,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":48,\"marginBottom\":40,\"marginBottomTablet\":40,\"marginBottomMobile\":40} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e2da970a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e2da970a\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:48px\">Explore Our Awesomeness</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=YHhK_twfYB8\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=YHhK_twfYB8\n</div></figure>\n<!-- /wp:core-embed/youtube --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-60162bcb\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":135,\"paddingBottomTablet\":135,\"paddingBottomMobile\":135,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-60162bcb\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-983ff765\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-983ff765\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a0624810\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a0624810\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a0624810\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">03</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7ac7a90e\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-7ac7a90e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7ac7a90e\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Our Team</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a8294614\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":20,\"paddingRightMobile\":20,\"paddingLeftTablet\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a8294614\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a8294614\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-ec121619\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":60,\"marginTopTablet\":60,\"marginTopMobile\":60,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-ec121619\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-11be02b7\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-11be02b7\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":205,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-5.jpg\" alt=\"\" class=\"wp-image-205\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ade6534f\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-ade6534f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ade6534f\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Daniele Johnson</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-41452188\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-41452188\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-41452188\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder &amp; CEO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c6631aef\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c6631aef\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":206,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0c58b78a\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-0c58b78a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0c58b78a\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Summer Geller</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-99f9a4e7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-99f9a4e7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-99f9a4e7\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">CTO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a1d8f6f3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a1d8f6f3\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":207,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-4.jpg\" alt=\"\" class=\"wp-image-207\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-77ab0453\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-77ab0453\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-77ab0453\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Marissa Adams</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-dde6199a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-dde6199a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-dde6199a\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Lead Developer</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-be6fc09c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-be6fc09c\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":208,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-1.jpg\" alt=\"\" class=\"wp-image-208\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3e1ca92b\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-3e1ca92b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3e1ca92b\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Jennifer Gilmore</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5591f549\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5591f549\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5591f549\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Marketing</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-e42951ed\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":150,\"paddingTopTablet\":150,\"paddingTopMobile\":150,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":120,\"paddingBottomTablet\":120,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-e42951ed\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-89d72d97\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-89d72d97\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-line\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-chart-line\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-05557d66\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-05557d66\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-05557d66\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">12,458+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2f43dd02\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2f43dd02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2f43dd02\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Projects Completed</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fd5aeed4\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fd5aeed4\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"user\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-user\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cf709e32\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-cf709e32\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cf709e32\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,796+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-70f5057c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-70f5057c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-70f5057c\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Satisfied Clients</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3af1e4ed\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3af1e4ed\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"heart\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-heart\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e3f90df1\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e3f90df1\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e3f90df1\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,000+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e0e8c109\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-e0e8c109\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e0e8c109\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Positive Feedbacks</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-40e35921\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-40e35921\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"gift\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-gift\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-961bdc52\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-961bdc52\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-961bdc52\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,500+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d691eae3\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-d691eae3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d691eae3\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Freebies Released</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d1146f5a\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":140,\"paddingBottomTablet\":140,\"paddingBottomMobile\":140,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d1146f5a\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-87b2b8d0\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-87b2b8d0\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c71363e0\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c71363e0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c71363e0\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">05</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6e9a082c\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-6e9a082c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6e9a082c\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Pricing Table</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-dc1bb971\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":80,\"marginBottomTablet\":70} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-dc1bb971\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-dc1bb971\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c20ce622\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopMobile\":0,\"paddingRightMobile\":10,\"paddingBottomMobile\":0,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-c20ce622\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-57d4f7f6\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-57d4f7f6\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0c47cca5\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-0c47cca5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0c47cca5\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d948d670\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d948d670\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-93ca6a3a\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#38c695\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-93ca6a3a\" style=\"background:#38c695;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a2dd543e\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-a2dd543e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a2dd543e\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-970db141\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-970db141\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-970db141\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2a5b2dac\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2a5b2dac\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2a5b2dac\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-51ab00eb\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-51ab00eb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-51ab00eb\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-722926b8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-722926b8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-722926b8\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b8664623\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b8664623\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b8664623\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-585c838a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-585c838a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-585c838a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-89b7b3d2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-89b7b3d2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-89b7b3d2\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-0d75d80b\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#38c695\",\"background\":\"#ffffff\",\"border\":\"#38c695\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#38c695\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-0d75d80b\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f6f1d5d6\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":30,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f6f1d5d6\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5853cf71\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-5853cf71\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5853cf71\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-1d2b9761\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-1d2b9761\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-624a4fde\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#fc5f45\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-624a4fde\" style=\"background:#fc5f45;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5ef1b07c\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-5ef1b07c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5ef1b07c\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9d452731\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9d452731\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9d452731\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6a3e554c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6a3e554c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6a3e554c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5e8d726b\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5e8d726b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5e8d726b\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8c221010\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8c221010\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8c221010\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-199dd0e4\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-199dd0e4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-199dd0e4\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5d9a937c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5d9a937c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5d9a937c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9712b71e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9712b71e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9712b71e\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-0ffd0787\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#fc5f45\",\"background\":\"#ffffff\",\"border\":\"#fc5f45\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#fc5f45\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-0ffd0787\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e8ad3c60\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#b27cf5\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-e8ad3c60\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ea193397\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-ea193397\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ea193397\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-78d65b71\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-78d65b71\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3543aa4b\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#b27cf5\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3543aa4b\" style=\"background:#b27cf5;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-66d643a2\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-66d643a2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-66d643a2\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-503377e8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-503377e8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-503377e8\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6b750556\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6b750556\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6b750556\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-47ae4cb0\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-47ae4cb0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-47ae4cb0\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4084ab38\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4084ab38\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4084ab38\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6ecc9d12\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6ecc9d12\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6ecc9d12\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3fe4beb8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3fe4beb8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3fe4beb8\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9527d6dc\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9527d6dc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9527d6dc\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-2f982dcd\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#b27cf5\",\"background\":\"#ffffff\",\"border\":\"#b27cf5\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#b27cf5\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-2f982dcd\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c752778a\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-c752778a\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-86058bf5\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-86058bf5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9aa56be9\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#646262\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-9aa56be9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9aa56be9\" style=\"color:#646262;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">06</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d5c44949\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-d5c44949\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d5c44949\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Testimonials</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-119e94ec\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-119e94ec\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-119e94ec\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/testimonials -->\n<div class=\"wp-block-themeisle-blocks-testimonials\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-00baae56\",\"columns\":2,\"layout\":\"oneTwo\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":44,\"marginTopMobile\":44,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-oneTwo-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-00baae56\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6b02c72d\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"border\":10,\"borderColor\":\"#2d2e33\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6b02c72d\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#2d2e33;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-7d8f1448\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-7d8f1448\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-db57b876\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-db57b876\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":206,\"align\":\"center\",\"width\":344,\"height\":353} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\" width=\"344\" height=\"353\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7656b6aa\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":25,\"paddingRight\":75,\"paddingRightTablet\":75,\"paddingRightMobile\":30,\"paddingLeft\":75,\"paddingLeftTablet\":75,\"paddingLeftMobile\":30,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7656b6aa\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bf558675\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-bf558675\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bf558675\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">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.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f4954979\",\"tag\":\"p\",\"headingColor\":\"#404248\",\"fontSize\":30,\"fontFamily\":\"Calligraffitti\",\"fontVariant\":\"normal\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f4954979\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f4954979\" style=\"color:#404248;font-family:Calligraffitti;font-weight:normal;font-style:normal;text-transform:none\">Melina</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3dd1b73f\",\"tag\":\"h6\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-3dd1b73f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3dd1b73f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Melina Albrecht</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-61677d52\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-61677d52\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-61677d52\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder, TingTong</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/testimonials --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-cc5ca388\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-cc5ca388\" style=\"background:#ffffff;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2e553386\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2e553386\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-05db3788\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-05db3788\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-05db3788\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">07</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-17f8a94b\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-17f8a94b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-17f8a94b\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Why select us?</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ffd1b776\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":75} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-ffd1b776\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ffd1b776\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-caf70872\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-caf70872\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7bf6e60d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7bf6e60d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-bar\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-chart-bar\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-af24cbdb\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-af24cbdb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-af24cbdb\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Business Growth</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cfe80c33\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-cfe80c33\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cfe80c33\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4725031c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4725031c\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c40e105f\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c40e105f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c40e105f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Unlimited Revisions</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2c9d4774\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2c9d4774\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2c9d4774\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3edf80c2\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3edf80c2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"directions\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-directions\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-45d3c397\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-45d3c397\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-45d3c397\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Ultimate Perfection</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-995b1073\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-995b1073\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-995b1073\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-3102332e\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-3102332e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-625bc1c1\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-625bc1c1\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tv\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-tv\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3c60af5e\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-3c60af5e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3c60af5e\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Smart Experience</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-829898f1\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-829898f1\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-829898f1\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fee2f813\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fee2f813\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"calendar-plus\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-calendar-plus\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-87762615\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-87762615\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-87762615\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Strict Deadline</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4d824dc7\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4d824dc7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4d824dc7\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-00e69db8\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-00e69db8\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"medal\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-medal\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b1f94b54\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-b1f94b54\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b1f94b54\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Reputed Company</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f15118c9\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f15118c9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f15118c9\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-9a716556\",\"columns\":2,\"layout\":\"twoOne\",\"layoutTablet\":\"twoOne\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":150,\"marginTopTablet\":75,\"marginTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-twoOne-layout has-tablet-twoOne-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-9a716556\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5fe29b29\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5fe29b29\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4c186c06\",\"tag\":\"h4\",\"align\":\"right\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":25,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":40,\"paddingTypeMobile\":\"unlinked\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-4c186c06\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4c186c06\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:40px\">Start your journey with us now</h4>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-1049ab5e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-1049ab5e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-1b7b62d5\",\"buttons\":1,\"align\":\"flex-start\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"get started\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#f64a2d\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-1b7b62d5\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:flex-start;align-items:flex-start\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-45046f4b\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":60,\"paddingBottomMobile\":60,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-45046f4b\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4e9bc4c2\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4e9bc4c2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-809fd590\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-809fd590\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-809fd590\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">08</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8cc7130d\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-8cc7130d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8cc7130d\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Blog</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6a6fe024\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-6a6fe024\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6a6fe024\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-fd27d629\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-fd27d629\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3c744452\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopMobile\":0,\"paddingBottomMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3c744452\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/posts-grid {\"grid\":true,\"postsToShow\":3,\"displayCategory\":false,\"displayDate\":false,\"displayAuthor\":false,\"className\":\"neve-our-blog\"} /--></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-7dcc72ab\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-7dcc72ab\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c01b520e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c01b520e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-92813c4a\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#636060\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-92813c4a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-92813c4a\" style=\"color:#636060;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">09</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-79c32044\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-79c32044\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-79c32044\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Get in Touch</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a997086d\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a997086d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a997086d\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\"> Allow people to reach you directly through your site: </div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-aab8a6ec\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":820,\"horizontalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-aab8a6ec\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:820px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6d8d4b8b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6d8d4b8b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:shortcode -->\n[wpforms id=\"649\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d6a4de7f\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"align\":\"wide\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignwide has-4-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d6a4de7f\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2c9e5897\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2c9e5897\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2af12af5\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-2af12af5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2af12af5\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Here for you</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ed5ff52c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ed5ff52c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ed5ff52c\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Call us 24/7. We are there for your support.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2569c731\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2569c731\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6f50790e\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-6f50790e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6f50790e\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">About Neve</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-999115b2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-999115b2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-999115b2\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Res enim fortasse verae, certe graves.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5bc9af88\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5bc9af88\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c9bd3583\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-c9bd3583\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c9bd3583\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Where to find us</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0efc5eea\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-0efc5eea\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0efc5eea\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">42 Boulevard, California, number 23</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7d879b81\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7d879b81\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-01eb1246\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-01eb1246\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-01eb1246\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Keep in touch</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/sharing-icons {\"align\":\"center\",\"className\":\"is-style-icons\"} /--></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->','Home','','trash','closed','closed','','home-2__trashed','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',0,'https://demo.themeisle.com/neve-onboarding-gutenberg/?page_id=645',0,'page','',0),(725,1,'2019-02-11 15:13:36','2019-02-11 15:13:36','','neve_demo','','inherit','open','closed','','neve_demo-3','','','2019-02-11 15:13:36','2019-02-11 15:13:36','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/02/neve_demo-1.png',0,'attachment','image/png',0),(726,1,'2019-02-11 15:18:33','2019-02-11 15:18:33','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','trash','closed','closed','','wpforms-preview-2__trashed','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',0,'https://demo.themeisle.com/neve-onboarding-gutenberg/wpforms-preview/',0,'page','',0),(727,1,'2019-04-04 09:00:22','2019-04-04 09:00:22','','placeholder-image','','inherit','open','closed','','placeholder-image-3','','','2019-04-04 09:00:22','2019-04-04 09:00:22','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/placeholder-image-2.jpg',0,'attachment','image/jpeg',0),(730,1,'2019-04-13 19:23:23','2019-04-13 19:23:23','<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-fdabfeff\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":180,\"paddingTopTablet\":180,\"paddingTopMobile\":75,\"paddingRight\":0,\"paddingRightTablet\":40,\"paddingRightMobile\":25,\"paddingBottom\":130,\"paddingBottomTablet\":130,\"paddingBottomMobile\":75,\"paddingLeft\":0,\"paddingLeftTablet\":40,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-fdabfeff\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-84ffea00\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-84ffea00\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8ea2e70a\",\"tag\":\"h1\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":60,\"fontSizeMobile\":37,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"regular\",\"paddingType\":\"unlinked\",\"paddingRight\":100,\"paddingLeft\":100,\"marginBottomTablet\":35} -->\n<h1 id=\"wp-block-themeisle-blocks-advanced-heading-8ea2e70a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8ea2e70a\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:normal;font-style:normal;text-transform:none\">We offer  <br><strong>the best Traditional Chinese Medicine services</strong> </h1>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"white\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-text-color has-large-font-size has-white-color\">Acupuncture and Chinese  Herbal Medicine</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> <br><strong>b</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-dad62976\",\"align\":\"center\",\"spacing\":25,\"collapse\":\"collapse-mobile\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"Our works\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#fc5f45\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"services\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#38c695\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#00ba78\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-dad62976\" class=\"wp-block-themeisle-blocks-button-group collapse-mobile\" style=\"justify-content:center;align-items:center\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>Our works</span></a><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-1\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>services</span></a></div>\n<!-- /wp:themeisle-blocks/button-group -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-083ce482\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":1,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":75,\"marginTopTablet\":70,\"marginTopMobile\":75,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-083ce482\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a2ea848e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"margin\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a2ea848e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-29c89caa\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-29c89caa\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e2f689fe\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e2f689fe\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e2f689fe\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-25361a2b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-25361a2b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-543d6ecc\",\"prefix\":\"far\",\"icon\":\"clock\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-543d6ecc\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-clock\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-50a9b3d4\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-50a9b3d4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-50a9b3d4\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5935c801\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5935c801\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-990d6121\",\"prefix\":\"far\",\"icon\":\"grin\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-990d6121\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-grin\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a42b42d5\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-a42b42d5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a42b42d5\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-af08b8f1\",\"columns\":2,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":55,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":15,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":65,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-2-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-af08b8f1\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f874febc\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":50} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f874febc\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-0c0b61ac\",\"columns\":1,\"layout\":\"equal\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-default-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-0c0b61ac\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-de4f8488\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-de4f8488\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":167,\"align\":\"center\",\"width\":630,\"height\":945} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/street-at-nigh.jpg\" alt=\"\" class=\"wp-image-167\" width=\"630\" height=\"945\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e0d1ee6f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":50,\"paddingBottomTablet\":50,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"marginLeft\":-30,\"marginLeftTablet\":1,\"marginLeftMobile\":1,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":8,\"boxShadowBlur\":10,\"boxShadowHorizontal\":1,\"boxShadowVertical\":1,\"columnWidth\":50,\"className\":\"neve-about-content\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column neve-about-content\" id=\"wp-block-themeisle-blocks-advanced-column-e0d1ee6f\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:1px 1px 10px 0px rgba(0, 0, 0, 0.08)\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-00739113\",\"tag\":\"div\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#ebebeb\",\"highlightColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingLeft\":20,\"marginBottom\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-00739113\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-00739113\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">01</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-39dfa101\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginTop\":-130,\"marginTopTablet\":-150,\"marginTopMobile\":-150} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-39dfa101\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-39dfa101\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize\">About Us.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a783d8cf\",\"tag\":\"p\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-a783d8cf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a783d8cf\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">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.&nbsp;<br><br>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-803a87d6\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":1,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTop\":0,\"marginBottom\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-803a87d6\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bd4a61b6\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":100,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginBottom\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bd4a61b6\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3c1fb533\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-3c1fb533\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3c1fb533\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">02</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-38612184\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-110,\"marginTopTablet\":-120,\"marginTopMobile\":-140} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-38612184\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-38612184\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Focus</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-74eb212a\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginBottom\":35} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-74eb212a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-74eb212a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-a6c50361\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":25,\"paddingBottom\":0,\"paddingLeft\":25,\"margin\":0,\"marginTop\":75,\"marginTopTablet\":55,\"marginTopMobile\":35,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-a6c50361\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a9e2d3c6\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":25,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a9e2d3c6\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;box-shadow:0px 0px 25px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-e7623334\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"id-card\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-e7623334\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-id-card\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c4e469cd\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-c4e469cd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c4e469cd\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Web Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3fd3fef6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3fd3fef6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3fd3fef6\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a074603f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginMobile\":30,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a074603f\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-01c09c57\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"map\",\"fontSize\":50,\"padding\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-01c09c57\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:5px\"><i class=\"far fa-map\" style=\"border-radius:0%;font-size:50px;padding:10px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d7b0771f\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-d7b0771f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d7b0771f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">UX Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-51a99383\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":20,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-51a99383\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-51a99383\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4117d197\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4117d197\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-8dffd683\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"camera-retro\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-8dffd683\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-camera-retro\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5bb2255a\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-5bb2255a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5bb2255a\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Photography</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-32564d1a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-32564d1a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-32564d1a\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b17e6e73\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b17e6e73\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-84b04a92\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tablet-alt\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-84b04a92\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-tablet-alt\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-81fa899e\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-81fa899e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-81fa899e\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">App Development</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b9c2d38c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b9c2d38c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b9c2d38c\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-0660c577\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":120,\"paddingTopTablet\":55,\"paddingTopMobile\":55,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":25,\"paddingBottom\":149,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-0660c577\" style=\"background-image:url( \'https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-dfc3f183\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-dfc3f183\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a2887bbd\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":23,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":48,\"marginBottom\":40,\"marginBottomTablet\":40,\"marginBottomMobile\":40} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-a2887bbd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a2887bbd\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:48px\">Explore Our Awesomeness</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=YHhK_twfYB8\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=YHhK_twfYB8\n</div></figure>\n<!-- /wp:core-embed/youtube --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-38dc8178\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":135,\"paddingBottomTablet\":135,\"paddingBottomMobile\":135,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-38dc8178\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7c73860e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7c73860e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-eb36dd46\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-eb36dd46\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-eb36dd46\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">03</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-409b45a3\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-409b45a3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-409b45a3\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Our Team</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3b254edf\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":20,\"paddingRightMobile\":20,\"paddingLeftTablet\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-3b254edf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3b254edf\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-3d5cb430\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":60,\"marginTopTablet\":60,\"marginTopMobile\":60,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-3d5cb430\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-005b23d2\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-005b23d2\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":205,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-5.jpg\" alt=\"\" class=\"wp-image-205\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-20e445db\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-20e445db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-20e445db\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Daniele Johnson</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-077a2336\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-077a2336\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-077a2336\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder &amp; CEO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-42e034fa\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-42e034fa\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":206,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-099d8a31\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-099d8a31\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-099d8a31\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Summer Geller</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5675f38e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5675f38e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5675f38e\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">CTO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6c690977\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6c690977\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":207,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-4.jpg\" alt=\"\" class=\"wp-image-207\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f8173cd4\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-f8173cd4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f8173cd4\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Marissa Adams</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b470d781\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b470d781\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b470d781\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Lead Developer</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-75d6d3ce\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-75d6d3ce\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":208,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-1.jpg\" alt=\"\" class=\"wp-image-208\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-243efeca\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-243efeca\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-243efeca\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Jennifer Gilmore</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-93d8e5d7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-93d8e5d7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-93d8e5d7\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Marketing</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-4a8876ac\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":150,\"paddingTopTablet\":150,\"paddingTopMobile\":150,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":120,\"paddingBottomTablet\":120,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-4a8876ac\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-44ef51af\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-44ef51af\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-80170278\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-line\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-80170278\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-chart-line\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bcd0516a\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-bcd0516a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bcd0516a\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">12,458+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-695f9afa\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-695f9afa\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-695f9afa\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Projects Completed</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-a5ee584a\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-a5ee584a\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a02f3b12\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a02f3b12\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-bb7a5566\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"user\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-bb7a5566\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-user\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f61ea227\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-f61ea227\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f61ea227\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,796+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7ed6325d\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-7ed6325d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7ed6325d\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Satisfied Clients</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-edb1ed87\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-edb1ed87\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-082bea42\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-082bea42\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-0f6fb808\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"heart\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-0f6fb808\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-heart\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f3c8cecb\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-f3c8cecb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f3c8cecb\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,000+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-974a50e8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-974a50e8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-974a50e8\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Positive Feedbacks</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-ee04e6aa\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-ee04e6aa\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7a14153b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7a14153b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5d3387e1\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"gift\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5d3387e1\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-gift\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e1a0d442\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e1a0d442\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e1a0d442\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,500+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-49385ee6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-49385ee6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-49385ee6\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Freebies Released</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-80db816a\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-80db816a\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-139f97a5\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":140,\"paddingBottomTablet\":140,\"paddingBottomMobile\":140,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-139f97a5\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4076f1f1\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4076f1f1\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2dd7e19e\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-2dd7e19e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2dd7e19e\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">05</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e4582efa\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-e4582efa\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e4582efa\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Pricing Table</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f622d60a\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":80,\"marginBottomTablet\":70} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-f622d60a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f622d60a\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-edc3befb\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopMobile\":0,\"paddingRightMobile\":10,\"paddingBottomMobile\":0,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-edc3befb\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-829a95d3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#38c695\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-829a95d3\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a6960ab0\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-a6960ab0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a6960ab0\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8d6ead14\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8d6ead14\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c482cf7c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#38c695\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c482cf7c\" style=\"background:#38c695;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-54c8f87b\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-54c8f87b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-54c8f87b\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6385d0ee\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6385d0ee\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6385d0ee\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-440f967f\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-440f967f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-440f967f\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f99e3744\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f99e3744\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f99e3744\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a0bd1b10\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-a0bd1b10\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a0bd1b10\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-457f5751\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-457f5751\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-457f5751\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-187ba6cd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-187ba6cd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-187ba6cd\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-48519fb9\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-48519fb9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-48519fb9\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-8c5263e7\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#38c695\",\"background\":\"#ffffff\",\"border\":\"#38c695\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#38c695\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-8c5263e7\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-0313f188\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":30,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-0313f188\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-fb6caa1f\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-fb6caa1f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-fb6caa1f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-24cd3b45\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-24cd3b45\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b25ea98f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#fc5f45\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b25ea98f\" style=\"background:#fc5f45;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d5c4ee5e\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-d5c4ee5e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d5c4ee5e\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-306730a7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-306730a7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-306730a7\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2c7c6a39\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2c7c6a39\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2c7c6a39\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c0c1fa13\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c0c1fa13\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c0c1fa13\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b01a4607\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b01a4607\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b01a4607\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-83293b93\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-83293b93\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-83293b93\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-90d61fe0\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-90d61fe0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-90d61fe0\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6f904980\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6f904980\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6f904980\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-ad4f7a6b\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#fc5f45\",\"background\":\"#ffffff\",\"border\":\"#fc5f45\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#fc5f45\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-ad4f7a6b\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-edb47e79\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-edb47e79\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b06c4ebc\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-b06c4ebc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b06c4ebc\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-5af2d85e\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-5af2d85e\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2b24d95f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#b27cf5\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2b24d95f\" style=\"background:#b27cf5;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e18c4274\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-e18c4274\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e18c4274\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cef68f66\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-cef68f66\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cef68f66\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b78f301b\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b78f301b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b78f301b\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3bf273bd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3bf273bd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3bf273bd\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-fba5bb52\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-fba5bb52\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-fba5bb52\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-51c84df4\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-51c84df4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-51c84df4\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3610c80a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3610c80a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3610c80a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1f75f49c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-1f75f49c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1f75f49c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-ee7b660d\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#b27cf5\",\"background\":\"#ffffff\",\"border\":\"#b27cf5\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#b27cf5\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-ee7b660d\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8ca13fc2\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8ca13fc2\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-d69971e2\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-d69971e2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e2b32ae4\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#646262\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-e2b32ae4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e2b32ae4\" style=\"color:#646262;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">06</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-71515555\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-71515555\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-71515555\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Testimonials</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9f613b3b\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-9f613b3b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9f613b3b\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/testimonials -->\n<div class=\"wp-block-themeisle-blocks-testimonials\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-f4e1f364\",\"columns\":2,\"layout\":\"oneTwo\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":44,\"marginTopMobile\":44,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-oneTwo-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-f4e1f364\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b926efc2\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"border\":10,\"borderColor\":\"#2d2e33\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b926efc2\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#2d2e33;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-58cd7fd7\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-58cd7fd7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bafc848b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bafc848b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":206,\"align\":\"center\",\"width\":344,\"height\":353} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\" width=\"344\" height=\"353\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e784957e\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":25,\"paddingRight\":75,\"paddingRightTablet\":75,\"paddingRightMobile\":30,\"paddingLeft\":75,\"paddingLeftTablet\":75,\"paddingLeftMobile\":30,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-e784957e\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-827b60f2\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-827b60f2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-827b60f2\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">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.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8de6900e\",\"tag\":\"p\",\"headingColor\":\"#404248\",\"fontSize\":30,\"fontFamily\":\"Calligraffitti\",\"fontVariant\":\"normal\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8de6900e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8de6900e\" style=\"color:#404248;font-family:Calligraffitti;font-weight:normal;font-style:normal;text-transform:none\">Melina</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-336b7e1c\",\"tag\":\"h6\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-336b7e1c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-336b7e1c\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Melina Albrecht</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-784cfe7a\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-784cfe7a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-784cfe7a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder, TingTong</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/testimonials --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-cc83bb6a\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-cc83bb6a\" style=\"background:#ffffff;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-8f20118f\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-8f20118f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f7f7b56f\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-f7f7b56f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f7f7b56f\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">07</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a3aa84fb\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-a3aa84fb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a3aa84fb\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Why select us?</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-965165b0\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":75} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-965165b0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-965165b0\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-40fd92d2\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-40fd92d2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a31712ca\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a31712ca\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-f482f91d\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-bar\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-f482f91d\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-chart-bar\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cf2f56df\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-cf2f56df\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cf2f56df\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Business Growth</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9eb3e250\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9eb3e250\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9eb3e250\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f258c64f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f258c64f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-708e80d6\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-708e80d6\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2a61bb54\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-2a61bb54\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2a61bb54\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Unlimited Revisions</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-723ab959\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-723ab959\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-723ab959\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5ee085fd\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5ee085fd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-6d07a296\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"directions\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-6d07a296\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-directions\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a04d75b4\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a04d75b4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a04d75b4\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Ultimate Perfection</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bbbdb545\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-bbbdb545\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bbbdb545\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-b81405e7\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-b81405e7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5be5656c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5be5656c\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-4cbd6028\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tv\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-4cbd6028\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-tv\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-58879cb9\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-58879cb9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-58879cb9\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Smart Experience</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ac32484d\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ac32484d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ac32484d\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-8ea8cc9d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-8ea8cc9d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-21661872\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"calendar-plus\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-21661872\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-calendar-plus\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d7dbe112\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-d7dbe112\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d7dbe112\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Strict Deadline</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c311324d\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c311324d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c311324d\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5e7e986c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5e7e986c\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-445ec3b4\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"medal\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-445ec3b4\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-medal\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-838f29df\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-838f29df\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-838f29df\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Reputed Company</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f9090679\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f9090679\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f9090679\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-214c5484\",\"columns\":2,\"layout\":\"twoOne\",\"layoutTablet\":\"twoOne\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":150,\"marginTopTablet\":75,\"marginTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-twoOne-layout has-tablet-twoOne-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-214c5484\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a28cf107\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a28cf107\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6aebddb8\",\"tag\":\"h4\",\"align\":\"right\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":25,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":40,\"paddingTypeMobile\":\"unlinked\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-6aebddb8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6aebddb8\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:40px\">Start your journey with us now</h4>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-1b421693\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-1b421693\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-de5bbff9\",\"buttons\":1,\"align\":\"flex-start\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"get started\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#f64a2d\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-de5bbff9\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:flex-start;align-items:flex-start\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-cfb271ab\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":60,\"paddingBottomMobile\":60,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-cfb271ab\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-262f7efe\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-262f7efe\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e0f673db\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-e0f673db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e0f673db\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">08</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-91016b80\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-91016b80\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-91016b80\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Blog</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-195c4097\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-195c4097\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-195c4097\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-153ca1a4\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-153ca1a4\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b518fcc0\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopMobile\":0,\"paddingBottomMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b518fcc0\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/posts-grid {\"grid\":true,\"postsToShow\":3,\"displayCategory\":false,\"displayDate\":false,\"displayAuthor\":false,\"className\":\"neve-our-blog\"} /--></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-a6ec1b4d\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-a6ec1b4d\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a78948fd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a78948fd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-94804722\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#636060\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-94804722\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-94804722\" style=\"color:#636060;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">09</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-391e33b9\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-391e33b9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-391e33b9\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Get in Touch</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1077f1c7\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-1077f1c7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1077f1c7\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\"> Allow people to reach you directly through your site: </div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8b2bf93f\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":820,\"horizontalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8b2bf93f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:820px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fdd57932\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fdd57932\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:shortcode -->\n[wpforms id=\"649\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-ddf73b89\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"align\":\"wide\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignwide has-4-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-ddf73b89\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-28bb757b\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-28bb757b\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cb0a437d\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-cb0a437d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cb0a437d\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Here for you</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ef5842b7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ef5842b7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ef5842b7\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Call us 24/7. We are there for your support.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fd95d4e8\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fd95d4e8\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-be9b2a3c\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-be9b2a3c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-be9b2a3c\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">About Neve</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c937415e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c937415e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c937415e\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Res enim fortasse verae, certe graves.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b5da2e71\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b5da2e71\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e311180f\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-e311180f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e311180f\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Where to find us</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1551a596\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-1551a596\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1551a596\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">42 Boulevard, California, number 23</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-40783904\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-40783904\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-13d4c704\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-13d4c704\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-13d4c704\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Keep in touch</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/sharing-icons {\"align\":\"center\",\"className\":\"is-style-icons\"} /--></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->','Home','','inherit','closed','closed','','645-autosave-v1','','','2019-04-13 19:23:23','2019-04-13 19:23:23','',645,'https://test.evergreenwellness.com/2019/04/13/645-autosave-v1/',0,'revision','',0),(729,1,'2019-04-13 19:18:07','2019-04-13 19:18:07','<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-051b510c\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":180,\"paddingTopTablet\":180,\"paddingTopMobile\":75,\"paddingRight\":0,\"paddingRightTablet\":40,\"paddingRightMobile\":25,\"paddingBottom\":130,\"paddingBottomTablet\":130,\"paddingBottomMobile\":75,\"paddingLeft\":0,\"paddingLeftTablet\":40,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-051b510c\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-811d2b47\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-811d2b47\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-37e9df03\",\"tag\":\"h1\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":60,\"fontSizeMobile\":37,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"regular\",\"paddingType\":\"unlinked\",\"paddingRight\":100,\"paddingLeft\":100,\"marginBottomTablet\":35} -->\n<h1 id=\"wp-block-themeisle-blocks-advanced-heading-37e9df03\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-37e9df03\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:normal;font-style:normal;text-transform:none\"> Super Fast, Featherweight Theme to Enter the Gutenberg Era </h1>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-9d0faa1a\",\"align\":\"center\",\"spacing\":25,\"collapse\":\"collapse-mobile\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"Our works\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#fc5f45\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"services\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#38c695\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#00ba78\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-9d0faa1a\" class=\"wp-block-themeisle-blocks-button-group collapse-mobile\" style=\"justify-content:center;align-items:center\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>Our works</span></a><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-1\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>services</span></a></div>\n<!-- /wp:themeisle-blocks/button-group -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-1cde2655\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":1,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":75,\"marginTopTablet\":70,\"marginTopMobile\":75,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-1cde2655\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7725c11d\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"margin\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7725c11d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-461bf847\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-461bf847\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-461bf847\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-58824158\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-58824158\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"far\",\"icon\":\"clock\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-clock\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-896a3b02\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-896a3b02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-896a3b02\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-d8879ddd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-d8879ddd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"far\",\"icon\":\"grin\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-grin\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c5d62f7a\",\"columns\":2,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":55,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":15,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":65,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-2-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-c5d62f7a\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-924c707d\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-924c707d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-2a2dd848\",\"columns\":1,\"layout\":\"equal\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-default-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-2a2dd848\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b8186aa5\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b8186aa5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":167,\"align\":\"center\",\"width\":630,\"height\":945} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/street-at-nigh.jpg\" alt=\"\" class=\"wp-image-167\" width=\"630\" height=\"945\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3b7607a4\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":50,\"paddingBottomTablet\":50,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"marginLeft\":-30,\"marginLeftTablet\":1,\"marginLeftMobile\":1,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":8,\"boxShadowBlur\":10,\"boxShadowHorizontal\":1,\"boxShadowVertical\":1,\"className\":\"neve-about-content\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column neve-about-content\" id=\"wp-block-themeisle-blocks-advanced-column-3b7607a4\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:1px 1px 10px 0px rgba(0, 0, 0, 0.08)\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d78669db\",\"tag\":\"div\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#ebebeb\",\"highlightColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingLeft\":20,\"marginBottom\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-d78669db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d78669db\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">01</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c4eedf47\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginTop\":-130,\"marginTopTablet\":-150,\"marginTopMobile\":-150} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-c4eedf47\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c4eedf47\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize\">About Us.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7e30255e\",\"tag\":\"p\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-7e30255e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7e30255e\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">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.&nbsp;<br><br>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-83937a97\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":1,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTop\":0,\"marginBottom\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-83937a97\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b99f62be\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":100,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginBottom\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b99f62be\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-535b8e02\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-535b8e02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-535b8e02\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">02</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-764e2b43\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-110,\"marginTopTablet\":-120,\"marginTopMobile\":-140} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-764e2b43\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-764e2b43\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Focus</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-57541825\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginBottom\":35} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-57541825\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-57541825\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-56760ed4\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":25,\"paddingBottom\":0,\"paddingLeft\":25,\"margin\":0,\"marginTop\":75,\"marginTopTablet\":55,\"marginTopMobile\":35,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-56760ed4\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7c36ed5c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7c36ed5c\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;box-shadow:0px 0px 25px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"id-card\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-id-card\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d36bb1f6\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-d36bb1f6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d36bb1f6\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Web Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-937cc106\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-937cc106\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-937cc106\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6e6e0694\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginMobile\":30,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6e6e0694\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"map\",\"fontSize\":50,\"padding\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:5px\"><i class=\"far fa-map\" style=\"border-radius:0%;font-size:50px;padding:10px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-18841a83\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-18841a83\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-18841a83\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">UX Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-509f63cd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":20,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-509f63cd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-509f63cd\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7bc5a157\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7bc5a157\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"camera-retro\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-camera-retro\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7e126df0\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-7e126df0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7e126df0\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Photography</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b1f83419\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b1f83419\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b1f83419\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5b31cfe3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5b31cfe3\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tablet-alt\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-tablet-alt\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-64d74eaf\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-64d74eaf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-64d74eaf\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">App Development</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-48633dbc\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-48633dbc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-48633dbc\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-75ad5ae2\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":120,\"paddingTopTablet\":55,\"paddingTopMobile\":55,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":25,\"paddingBottom\":149,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-75ad5ae2\" style=\"background-image:url( \'https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-89b8c01a\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-89b8c01a\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e2da970a\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":23,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":48,\"marginBottom\":40,\"marginBottomTablet\":40,\"marginBottomMobile\":40} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e2da970a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e2da970a\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:48px\">Explore Our Awesomeness</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=YHhK_twfYB8\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=YHhK_twfYB8\n</div></figure>\n<!-- /wp:core-embed/youtube --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-60162bcb\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":135,\"paddingBottomTablet\":135,\"paddingBottomMobile\":135,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-60162bcb\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-983ff765\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-983ff765\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a0624810\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a0624810\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a0624810\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">03</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7ac7a90e\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-7ac7a90e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7ac7a90e\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Our Team</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a8294614\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":20,\"paddingRightMobile\":20,\"paddingLeftTablet\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a8294614\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a8294614\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-ec121619\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":60,\"marginTopTablet\":60,\"marginTopMobile\":60,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-ec121619\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-11be02b7\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-11be02b7\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":205,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-5.jpg\" alt=\"\" class=\"wp-image-205\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ade6534f\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-ade6534f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ade6534f\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Daniele Johnson</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-41452188\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-41452188\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-41452188\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder &amp; CEO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c6631aef\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c6631aef\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":206,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0c58b78a\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-0c58b78a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0c58b78a\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Summer Geller</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-99f9a4e7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-99f9a4e7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-99f9a4e7\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">CTO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a1d8f6f3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a1d8f6f3\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":207,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-4.jpg\" alt=\"\" class=\"wp-image-207\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-77ab0453\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-77ab0453\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-77ab0453\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Marissa Adams</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-dde6199a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-dde6199a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-dde6199a\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Lead Developer</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-be6fc09c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-be6fc09c\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":208,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-1.jpg\" alt=\"\" class=\"wp-image-208\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3e1ca92b\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-3e1ca92b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3e1ca92b\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Jennifer Gilmore</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5591f549\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5591f549\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5591f549\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Marketing</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-e42951ed\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":150,\"paddingTopTablet\":150,\"paddingTopMobile\":150,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":120,\"paddingBottomTablet\":120,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-e42951ed\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-89d72d97\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-89d72d97\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-line\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-chart-line\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-05557d66\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-05557d66\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-05557d66\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">12,458+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2f43dd02\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2f43dd02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2f43dd02\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Projects Completed</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fd5aeed4\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fd5aeed4\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"user\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-user\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cf709e32\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-cf709e32\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cf709e32\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,796+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-70f5057c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-70f5057c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-70f5057c\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Satisfied Clients</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3af1e4ed\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3af1e4ed\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"heart\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-heart\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e3f90df1\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e3f90df1\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e3f90df1\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,000+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e0e8c109\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-e0e8c109\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e0e8c109\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Positive Feedbacks</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-40e35921\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-40e35921\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"gift\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-gift\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-961bdc52\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-961bdc52\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-961bdc52\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,500+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d691eae3\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-d691eae3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d691eae3\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Freebies Released</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d1146f5a\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":140,\"paddingBottomTablet\":140,\"paddingBottomMobile\":140,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d1146f5a\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-87b2b8d0\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-87b2b8d0\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c71363e0\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c71363e0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c71363e0\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">05</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6e9a082c\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-6e9a082c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6e9a082c\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Pricing Table</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-dc1bb971\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":80,\"marginBottomTablet\":70} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-dc1bb971\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-dc1bb971\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c20ce622\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopMobile\":0,\"paddingRightMobile\":10,\"paddingBottomMobile\":0,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-c20ce622\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-57d4f7f6\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-57d4f7f6\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0c47cca5\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-0c47cca5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0c47cca5\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d948d670\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d948d670\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-93ca6a3a\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#38c695\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-93ca6a3a\" style=\"background:#38c695;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a2dd543e\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-a2dd543e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a2dd543e\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-970db141\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-970db141\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-970db141\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2a5b2dac\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2a5b2dac\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2a5b2dac\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-51ab00eb\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-51ab00eb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-51ab00eb\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-722926b8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-722926b8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-722926b8\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b8664623\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b8664623\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b8664623\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-585c838a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-585c838a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-585c838a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-89b7b3d2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-89b7b3d2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-89b7b3d2\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-0d75d80b\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#38c695\",\"background\":\"#ffffff\",\"border\":\"#38c695\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#38c695\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-0d75d80b\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f6f1d5d6\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":30,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f6f1d5d6\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5853cf71\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-5853cf71\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5853cf71\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-1d2b9761\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-1d2b9761\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-624a4fde\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#fc5f45\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-624a4fde\" style=\"background:#fc5f45;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5ef1b07c\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-5ef1b07c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5ef1b07c\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9d452731\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9d452731\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9d452731\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6a3e554c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6a3e554c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6a3e554c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5e8d726b\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5e8d726b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5e8d726b\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8c221010\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8c221010\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8c221010\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-199dd0e4\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-199dd0e4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-199dd0e4\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5d9a937c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5d9a937c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5d9a937c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9712b71e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9712b71e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9712b71e\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-0ffd0787\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#fc5f45\",\"background\":\"#ffffff\",\"border\":\"#fc5f45\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#fc5f45\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-0ffd0787\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e8ad3c60\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#b27cf5\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-e8ad3c60\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ea193397\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-ea193397\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ea193397\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-78d65b71\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-78d65b71\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3543aa4b\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#b27cf5\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3543aa4b\" style=\"background:#b27cf5;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-66d643a2\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-66d643a2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-66d643a2\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-503377e8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-503377e8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-503377e8\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6b750556\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6b750556\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6b750556\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-47ae4cb0\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-47ae4cb0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-47ae4cb0\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4084ab38\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4084ab38\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4084ab38\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6ecc9d12\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6ecc9d12\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6ecc9d12\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3fe4beb8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3fe4beb8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3fe4beb8\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9527d6dc\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9527d6dc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9527d6dc\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-2f982dcd\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#b27cf5\",\"background\":\"#ffffff\",\"border\":\"#b27cf5\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#b27cf5\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-2f982dcd\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c752778a\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-c752778a\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-86058bf5\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-86058bf5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9aa56be9\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#646262\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-9aa56be9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9aa56be9\" style=\"color:#646262;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">06</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d5c44949\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-d5c44949\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d5c44949\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Testimonials</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-119e94ec\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-119e94ec\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-119e94ec\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/testimonials -->\n<div class=\"wp-block-themeisle-blocks-testimonials\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-00baae56\",\"columns\":2,\"layout\":\"oneTwo\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":44,\"marginTopMobile\":44,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-oneTwo-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-00baae56\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6b02c72d\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"border\":10,\"borderColor\":\"#2d2e33\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6b02c72d\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#2d2e33;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-7d8f1448\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-7d8f1448\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-db57b876\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-db57b876\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":206,\"align\":\"center\",\"width\":344,\"height\":353} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\" width=\"344\" height=\"353\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7656b6aa\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":25,\"paddingRight\":75,\"paddingRightTablet\":75,\"paddingRightMobile\":30,\"paddingLeft\":75,\"paddingLeftTablet\":75,\"paddingLeftMobile\":30,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7656b6aa\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bf558675\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-bf558675\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bf558675\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">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.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f4954979\",\"tag\":\"p\",\"headingColor\":\"#404248\",\"fontSize\":30,\"fontFamily\":\"Calligraffitti\",\"fontVariant\":\"normal\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f4954979\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f4954979\" style=\"color:#404248;font-family:Calligraffitti;font-weight:normal;font-style:normal;text-transform:none\">Melina</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3dd1b73f\",\"tag\":\"h6\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-3dd1b73f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3dd1b73f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Melina Albrecht</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-61677d52\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-61677d52\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-61677d52\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder, TingTong</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/testimonials --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-cc5ca388\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-cc5ca388\" style=\"background:#ffffff;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2e553386\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2e553386\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-05db3788\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-05db3788\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-05db3788\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">07</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-17f8a94b\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-17f8a94b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-17f8a94b\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Why select us?</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ffd1b776\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":75} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-ffd1b776\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ffd1b776\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-caf70872\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-caf70872\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7bf6e60d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7bf6e60d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-bar\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-chart-bar\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-af24cbdb\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-af24cbdb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-af24cbdb\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Business Growth</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cfe80c33\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-cfe80c33\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cfe80c33\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4725031c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4725031c\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c40e105f\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c40e105f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c40e105f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Unlimited Revisions</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2c9d4774\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2c9d4774\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2c9d4774\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3edf80c2\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3edf80c2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"directions\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-directions\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-45d3c397\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-45d3c397\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-45d3c397\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Ultimate Perfection</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-995b1073\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-995b1073\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-995b1073\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-3102332e\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-3102332e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-625bc1c1\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-625bc1c1\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tv\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-tv\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3c60af5e\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-3c60af5e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3c60af5e\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Smart Experience</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-829898f1\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-829898f1\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-829898f1\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fee2f813\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fee2f813\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"calendar-plus\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-calendar-plus\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-87762615\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-87762615\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-87762615\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Strict Deadline</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4d824dc7\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4d824dc7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4d824dc7\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-00e69db8\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-00e69db8\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"medal\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-medal\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b1f94b54\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-b1f94b54\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b1f94b54\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Reputed Company</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f15118c9\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f15118c9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f15118c9\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-9a716556\",\"columns\":2,\"layout\":\"twoOne\",\"layoutTablet\":\"twoOne\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":150,\"marginTopTablet\":75,\"marginTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-twoOne-layout has-tablet-twoOne-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-9a716556\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5fe29b29\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5fe29b29\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4c186c06\",\"tag\":\"h4\",\"align\":\"right\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":25,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":40,\"paddingTypeMobile\":\"unlinked\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-4c186c06\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4c186c06\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:40px\">Start your journey with us now</h4>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-1049ab5e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-1049ab5e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-1b7b62d5\",\"buttons\":1,\"align\":\"flex-start\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"get started\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#f64a2d\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-1b7b62d5\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:flex-start;align-items:flex-start\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-45046f4b\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":60,\"paddingBottomMobile\":60,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-45046f4b\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4e9bc4c2\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4e9bc4c2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-809fd590\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-809fd590\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-809fd590\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">08</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8cc7130d\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-8cc7130d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8cc7130d\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Blog</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6a6fe024\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-6a6fe024\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6a6fe024\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-fd27d629\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-fd27d629\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3c744452\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopMobile\":0,\"paddingBottomMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3c744452\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/posts-grid {\"grid\":true,\"postsToShow\":3,\"displayCategory\":false,\"displayDate\":false,\"displayAuthor\":false,\"className\":\"neve-our-blog\"} /--></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-7dcc72ab\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-7dcc72ab\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c01b520e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c01b520e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-92813c4a\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#636060\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-92813c4a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-92813c4a\" style=\"color:#636060;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">09</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-79c32044\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-79c32044\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-79c32044\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Get in Touch</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a997086d\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a997086d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a997086d\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\"> Allow people to reach you directly through your site: </div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-aab8a6ec\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":820,\"horizontalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-aab8a6ec\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:820px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6d8d4b8b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6d8d4b8b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:shortcode -->\n[wpforms id=\"649\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d6a4de7f\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"align\":\"wide\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignwide has-4-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d6a4de7f\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2c9e5897\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2c9e5897\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2af12af5\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-2af12af5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2af12af5\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Here for you</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ed5ff52c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ed5ff52c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ed5ff52c\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Call us 24/7. We are there for your support.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2569c731\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2569c731\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6f50790e\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-6f50790e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6f50790e\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">About Neve</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-999115b2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-999115b2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-999115b2\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Res enim fortasse verae, certe graves.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5bc9af88\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5bc9af88\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c9bd3583\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-c9bd3583\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c9bd3583\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Where to find us</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0efc5eea\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-0efc5eea\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0efc5eea\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">42 Boulevard, California, number 23</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7d879b81\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7d879b81\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-01eb1246\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-01eb1246\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-01eb1246\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Keep in touch</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/sharing-icons {\"align\":\"center\",\"className\":\"is-style-icons\"} /--></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->','Home','','inherit','closed','closed','','645-revision-v1','','','2019-04-13 19:18:07','2019-04-13 19:18:07','',645,'https://test.evergreenwellness.com/2019/04/13/645-revision-v1/',0,'revision','',0),(731,1,'2019-04-13 19:19:36','2019-04-13 19:19:36','','Blog','','inherit','closed','closed','','26-revision-v1','','','2019-04-13 19:19:36','2019-04-13 19:19:36','',26,'https://test.evergreenwellness.com/2019/04/13/26-revision-v1/',0,'revision','',0),(732,1,'2019-04-13 19:19:36','2019-04-13 19:19:36','','Blog','','inherit','closed','closed','','6-revision-v1','','','2019-04-13 19:19:36','2019-04-13 19:19:36','',6,'https://test.evergreenwellness.com/2019/04/13/6-revision-v1/',0,'revision','',0),(733,1,'2019-04-13 19:19:36','2019-04-13 19:19:36','','Blog','','inherit','closed','closed','','723-revision-v1','','','2019-04-13 19:19:36','2019-04-13 19:19:36','',723,'https://test.evergreenwellness.com/2019/04/13/723-revision-v1/',0,'revision','',0),(734,1,'2019-04-13 19:19:37','2019-04-13 19:19:37','<h1>We design things with love and passion.</h1>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-dollar-1.png\" alt=\"\" /></figure><h3>Fixed price projects</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-clock-1.png\" alt=\"\" /></figure><h3>Receive on time</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smile-1.png\" alt=\"\" /></figure><h3>Satisfaction guaranteed</h3>		\n										<img width=\"529\" height=\"673\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-3.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-3.jpg 529w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-3-236x300.jpg 236w\" sizes=\"(max-width: 529px) 100vw, 529px\" />											\n			01		\n			<h2>about us.</h2>		\n		<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.ÃÂ </p><p>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>		\n			02		\n			<h2>Our focus.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"55\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-envelope-1.png\" alt=\"\" /></figure><h5>Web Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"54\" height=\"48\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-map-1.png\" alt=\"\" /></figure><h5>UX Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"44\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-photography-1.png\" alt=\"\" /></figure><h5>Photography</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-phone-1.png\" alt=\"\" /></figure><h5>App Development</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					ÃÂ \n												<a href=\"\"><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></a>\n					<p><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></p>\n			03		\n			<h2>Our team.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team1-4-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Daniele Johnson</h6><p>Founder & CEO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Summer Geller</h6><p>CTO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team3-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Marissa Adams</h6><p>Lead Developer</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team4-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Jennifer Gilmore</h6><p>Marketing</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-300x200.jpg 300w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-768x512.jpg 768w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-1024x682.jpg 1024w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png 334w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-300x200.jpg 300w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-768x512.jpg 768w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-1024x682.jpg 1024w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/fruit-smoothies/\" title=\"Do it with passion\">\n					Do it with passion				</a>\n							</h6>\n				On recommend tolerably my belonging or am. Mutual has cannot beauty indeed now sussex merely you. It possible no husbands jennings ye offended packages pleasant he. Remainder recommend engrossed who eat she defective applauded&hellip;			\n			<!-- .obfx-grid-col-content --></article><article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/quid-autem-habent-admirationis/\" title=\"Always deliver more than expected\">\n					Always deliver more than expected				</a>\n							</h6>\n				Needed feebly dining oh talked wisdom oppose at. Applauded use attempted strangers now are middleton concluded had. It is tried Ã¯Â»Â¿no added purse shall no on truth. Pleased anxious or as in by viewing&hellip;			\n			<!-- .obfx-grid-col-content --></article><article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/beatum-inquit/\" title=\"Take the risk or lose the chance\">\n					Take the risk or lose the chance				</a>\n							</h6>\n				On then sake home is am leaf. Of suspicion do departure at extremely he believing. Do know said mind do rent they oh hope of. General enquire picture letters garrets on offices of no&hellip;			\n			<!-- .obfx-grid-col-content --></article><!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"3602d2b488\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"cacb43406b\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"de0f14a7c3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','91-revision-v1','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',91,'https://test.evergreenwellness.com/2019/04/13/91-revision-v1/',0,'revision','',0);
INSERT INTO `wp9z_posts` VALUES (735,1,'2019-04-13 19:19:37','2019-04-13 19:19:37','<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-051b510c\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":180,\"paddingTopTablet\":180,\"paddingTopMobile\":75,\"paddingRight\":0,\"paddingRightTablet\":40,\"paddingRightMobile\":25,\"paddingBottom\":130,\"paddingBottomTablet\":130,\"paddingBottomMobile\":75,\"paddingLeft\":0,\"paddingLeftTablet\":40,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-051b510c\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-811d2b47\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-811d2b47\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-37e9df03\",\"tag\":\"h1\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":60,\"fontSizeMobile\":37,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"regular\",\"paddingType\":\"unlinked\",\"paddingRight\":100,\"paddingLeft\":100,\"marginBottomTablet\":35} -->\n<h1 id=\"wp-block-themeisle-blocks-advanced-heading-37e9df03\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-37e9df03\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:normal;font-style:normal;text-transform:none\"> Super Fast, Featherweight Theme to Enter the Gutenberg Era </h1>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-9d0faa1a\",\"align\":\"center\",\"spacing\":25,\"collapse\":\"collapse-mobile\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"Our works\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#fc5f45\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"services\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#38c695\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#00ba78\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-9d0faa1a\" class=\"wp-block-themeisle-blocks-button-group collapse-mobile\" style=\"justify-content:center;align-items:center\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>Our works</span></a><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-1\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>services</span></a></div>\n<!-- /wp:themeisle-blocks/button-group -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-1cde2655\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":1,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":75,\"marginTopTablet\":70,\"marginTopMobile\":75,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-1cde2655\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7725c11d\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"margin\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7725c11d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-461bf847\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-461bf847\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-461bf847\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-58824158\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-58824158\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"far\",\"icon\":\"clock\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-clock\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-896a3b02\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-896a3b02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-896a3b02\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-d8879ddd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-d8879ddd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"far\",\"icon\":\"grin\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-grin\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c5d62f7a\",\"columns\":2,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":55,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":15,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":65,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-2-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-c5d62f7a\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-924c707d\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-924c707d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-2a2dd848\",\"columns\":1,\"layout\":\"equal\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-default-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-2a2dd848\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b8186aa5\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b8186aa5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":167,\"align\":\"center\",\"width\":630,\"height\":945} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/street-at-nigh.jpg\" alt=\"\" class=\"wp-image-167\" width=\"630\" height=\"945\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3b7607a4\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":50,\"paddingBottomTablet\":50,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"marginLeft\":-30,\"marginLeftTablet\":1,\"marginLeftMobile\":1,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":8,\"boxShadowBlur\":10,\"boxShadowHorizontal\":1,\"boxShadowVertical\":1,\"className\":\"neve-about-content\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column neve-about-content\" id=\"wp-block-themeisle-blocks-advanced-column-3b7607a4\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:1px 1px 10px 0px rgba(0, 0, 0, 0.08)\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d78669db\",\"tag\":\"div\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#ebebeb\",\"highlightColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingLeft\":20,\"marginBottom\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-d78669db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d78669db\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">01</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c4eedf47\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginTop\":-130,\"marginTopTablet\":-150,\"marginTopMobile\":-150} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-c4eedf47\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c4eedf47\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize\">About Us.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7e30255e\",\"tag\":\"p\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-7e30255e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7e30255e\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">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.&nbsp;<br><br>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-83937a97\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":1,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTop\":0,\"marginBottom\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-83937a97\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b99f62be\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":100,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginBottom\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b99f62be\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-535b8e02\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-535b8e02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-535b8e02\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">02</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-764e2b43\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-110,\"marginTopTablet\":-120,\"marginTopMobile\":-140} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-764e2b43\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-764e2b43\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Focus</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-57541825\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginBottom\":35} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-57541825\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-57541825\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-56760ed4\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":25,\"paddingBottom\":0,\"paddingLeft\":25,\"margin\":0,\"marginTop\":75,\"marginTopTablet\":55,\"marginTopMobile\":35,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-56760ed4\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7c36ed5c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7c36ed5c\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;box-shadow:0px 0px 25px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"id-card\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-id-card\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d36bb1f6\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-d36bb1f6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d36bb1f6\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Web Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-937cc106\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-937cc106\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-937cc106\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6e6e0694\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginMobile\":30,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6e6e0694\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"map\",\"fontSize\":50,\"padding\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:5px\"><i class=\"far fa-map\" style=\"border-radius:0%;font-size:50px;padding:10px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-18841a83\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-18841a83\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-18841a83\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">UX Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-509f63cd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":20,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-509f63cd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-509f63cd\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7bc5a157\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7bc5a157\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"camera-retro\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-camera-retro\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7e126df0\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-7e126df0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7e126df0\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Photography</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b1f83419\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b1f83419\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b1f83419\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5b31cfe3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5b31cfe3\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tablet-alt\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-tablet-alt\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-64d74eaf\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-64d74eaf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-64d74eaf\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">App Development</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-48633dbc\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-48633dbc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-48633dbc\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-75ad5ae2\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":120,\"paddingTopTablet\":55,\"paddingTopMobile\":55,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":25,\"paddingBottom\":149,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-75ad5ae2\" style=\"background-image:url( \'https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-89b8c01a\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-89b8c01a\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e2da970a\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":23,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":48,\"marginBottom\":40,\"marginBottomTablet\":40,\"marginBottomMobile\":40} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e2da970a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e2da970a\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:48px\">Explore Our Awesomeness</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=YHhK_twfYB8\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=YHhK_twfYB8\n</div></figure>\n<!-- /wp:core-embed/youtube --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-60162bcb\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":135,\"paddingBottomTablet\":135,\"paddingBottomMobile\":135,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-60162bcb\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-983ff765\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-983ff765\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a0624810\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a0624810\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a0624810\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">03</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7ac7a90e\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-7ac7a90e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7ac7a90e\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Our Team</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a8294614\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":20,\"paddingRightMobile\":20,\"paddingLeftTablet\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a8294614\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a8294614\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-ec121619\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":60,\"marginTopTablet\":60,\"marginTopMobile\":60,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-ec121619\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-11be02b7\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-11be02b7\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":205,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-5.jpg\" alt=\"\" class=\"wp-image-205\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ade6534f\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-ade6534f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ade6534f\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Daniele Johnson</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-41452188\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-41452188\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-41452188\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder &amp; CEO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c6631aef\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c6631aef\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":206,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0c58b78a\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-0c58b78a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0c58b78a\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Summer Geller</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-99f9a4e7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-99f9a4e7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-99f9a4e7\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">CTO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a1d8f6f3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a1d8f6f3\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":207,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-4.jpg\" alt=\"\" class=\"wp-image-207\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-77ab0453\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-77ab0453\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-77ab0453\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Marissa Adams</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-dde6199a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-dde6199a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-dde6199a\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Lead Developer</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-be6fc09c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-be6fc09c\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":208,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-1.jpg\" alt=\"\" class=\"wp-image-208\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3e1ca92b\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-3e1ca92b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3e1ca92b\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Jennifer Gilmore</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5591f549\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5591f549\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5591f549\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Marketing</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-e42951ed\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":150,\"paddingTopTablet\":150,\"paddingTopMobile\":150,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":120,\"paddingBottomTablet\":120,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-e42951ed\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-89d72d97\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-89d72d97\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-line\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-chart-line\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-05557d66\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-05557d66\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-05557d66\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">12,458+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2f43dd02\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2f43dd02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2f43dd02\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Projects Completed</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fd5aeed4\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fd5aeed4\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"user\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-user\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cf709e32\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-cf709e32\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cf709e32\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,796+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-70f5057c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-70f5057c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-70f5057c\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Satisfied Clients</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3af1e4ed\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3af1e4ed\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"heart\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-heart\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e3f90df1\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e3f90df1\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e3f90df1\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,000+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e0e8c109\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-e0e8c109\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e0e8c109\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Positive Feedbacks</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-40e35921\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-40e35921\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"gift\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-gift\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-961bdc52\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-961bdc52\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-961bdc52\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,500+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d691eae3\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-d691eae3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d691eae3\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Freebies Released</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d1146f5a\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":140,\"paddingBottomTablet\":140,\"paddingBottomMobile\":140,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d1146f5a\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-87b2b8d0\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-87b2b8d0\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c71363e0\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c71363e0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c71363e0\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">05</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6e9a082c\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-6e9a082c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6e9a082c\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Pricing Table</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-dc1bb971\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":80,\"marginBottomTablet\":70} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-dc1bb971\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-dc1bb971\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c20ce622\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopMobile\":0,\"paddingRightMobile\":10,\"paddingBottomMobile\":0,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-c20ce622\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-57d4f7f6\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-57d4f7f6\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0c47cca5\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-0c47cca5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0c47cca5\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d948d670\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d948d670\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-93ca6a3a\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#38c695\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-93ca6a3a\" style=\"background:#38c695;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a2dd543e\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-a2dd543e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a2dd543e\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-970db141\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-970db141\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-970db141\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2a5b2dac\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2a5b2dac\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2a5b2dac\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-51ab00eb\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-51ab00eb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-51ab00eb\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-722926b8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-722926b8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-722926b8\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b8664623\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b8664623\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b8664623\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-585c838a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-585c838a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-585c838a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-89b7b3d2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-89b7b3d2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-89b7b3d2\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-0d75d80b\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#38c695\",\"background\":\"#ffffff\",\"border\":\"#38c695\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#38c695\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-0d75d80b\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f6f1d5d6\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":30,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f6f1d5d6\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5853cf71\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-5853cf71\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5853cf71\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-1d2b9761\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-1d2b9761\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-624a4fde\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#fc5f45\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-624a4fde\" style=\"background:#fc5f45;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5ef1b07c\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-5ef1b07c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5ef1b07c\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9d452731\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9d452731\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9d452731\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6a3e554c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6a3e554c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6a3e554c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5e8d726b\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5e8d726b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5e8d726b\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8c221010\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8c221010\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8c221010\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-199dd0e4\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-199dd0e4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-199dd0e4\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5d9a937c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5d9a937c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5d9a937c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9712b71e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9712b71e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9712b71e\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-0ffd0787\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#fc5f45\",\"background\":\"#ffffff\",\"border\":\"#fc5f45\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#fc5f45\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-0ffd0787\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e8ad3c60\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#b27cf5\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-e8ad3c60\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ea193397\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-ea193397\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ea193397\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-78d65b71\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-78d65b71\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3543aa4b\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#b27cf5\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3543aa4b\" style=\"background:#b27cf5;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-66d643a2\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-66d643a2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-66d643a2\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-503377e8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-503377e8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-503377e8\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6b750556\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6b750556\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6b750556\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-47ae4cb0\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-47ae4cb0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-47ae4cb0\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4084ab38\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4084ab38\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4084ab38\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6ecc9d12\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6ecc9d12\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6ecc9d12\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3fe4beb8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3fe4beb8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3fe4beb8\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9527d6dc\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9527d6dc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9527d6dc\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-2f982dcd\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#b27cf5\",\"background\":\"#ffffff\",\"border\":\"#b27cf5\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#b27cf5\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-2f982dcd\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c752778a\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-c752778a\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-86058bf5\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-86058bf5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9aa56be9\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#646262\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-9aa56be9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9aa56be9\" style=\"color:#646262;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">06</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d5c44949\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-d5c44949\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d5c44949\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Testimonials</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-119e94ec\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-119e94ec\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-119e94ec\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/testimonials -->\n<div class=\"wp-block-themeisle-blocks-testimonials\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-00baae56\",\"columns\":2,\"layout\":\"oneTwo\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":44,\"marginTopMobile\":44,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-oneTwo-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-00baae56\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6b02c72d\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"border\":10,\"borderColor\":\"#2d2e33\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6b02c72d\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#2d2e33;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-7d8f1448\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-7d8f1448\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-db57b876\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-db57b876\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":206,\"align\":\"center\",\"width\":344,\"height\":353} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\" width=\"344\" height=\"353\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7656b6aa\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":25,\"paddingRight\":75,\"paddingRightTablet\":75,\"paddingRightMobile\":30,\"paddingLeft\":75,\"paddingLeftTablet\":75,\"paddingLeftMobile\":30,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7656b6aa\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bf558675\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-bf558675\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bf558675\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">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.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f4954979\",\"tag\":\"p\",\"headingColor\":\"#404248\",\"fontSize\":30,\"fontFamily\":\"Calligraffitti\",\"fontVariant\":\"normal\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f4954979\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f4954979\" style=\"color:#404248;font-family:Calligraffitti;font-weight:normal;font-style:normal;text-transform:none\">Melina</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3dd1b73f\",\"tag\":\"h6\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-3dd1b73f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3dd1b73f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Melina Albrecht</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-61677d52\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-61677d52\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-61677d52\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder, TingTong</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/testimonials --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-cc5ca388\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-cc5ca388\" style=\"background:#ffffff;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2e553386\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2e553386\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-05db3788\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-05db3788\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-05db3788\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">07</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-17f8a94b\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-17f8a94b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-17f8a94b\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Why select us?</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ffd1b776\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":75} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-ffd1b776\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ffd1b776\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-caf70872\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-caf70872\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7bf6e60d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7bf6e60d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-bar\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-chart-bar\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-af24cbdb\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-af24cbdb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-af24cbdb\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Business Growth</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cfe80c33\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-cfe80c33\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cfe80c33\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4725031c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4725031c\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c40e105f\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c40e105f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c40e105f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Unlimited Revisions</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2c9d4774\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2c9d4774\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2c9d4774\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3edf80c2\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3edf80c2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"directions\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-directions\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-45d3c397\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-45d3c397\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-45d3c397\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Ultimate Perfection</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-995b1073\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-995b1073\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-995b1073\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-3102332e\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-3102332e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-625bc1c1\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-625bc1c1\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tv\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-tv\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3c60af5e\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-3c60af5e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3c60af5e\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Smart Experience</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-829898f1\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-829898f1\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-829898f1\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fee2f813\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fee2f813\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"calendar-plus\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-calendar-plus\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-87762615\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-87762615\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-87762615\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Strict Deadline</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4d824dc7\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4d824dc7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4d824dc7\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-00e69db8\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-00e69db8\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"medal\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-medal\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b1f94b54\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-b1f94b54\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b1f94b54\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Reputed Company</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f15118c9\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f15118c9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f15118c9\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-9a716556\",\"columns\":2,\"layout\":\"twoOne\",\"layoutTablet\":\"twoOne\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":150,\"marginTopTablet\":75,\"marginTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-twoOne-layout has-tablet-twoOne-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-9a716556\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5fe29b29\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5fe29b29\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4c186c06\",\"tag\":\"h4\",\"align\":\"right\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":25,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":40,\"paddingTypeMobile\":\"unlinked\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-4c186c06\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4c186c06\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:40px\">Start your journey with us now</h4>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-1049ab5e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-1049ab5e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-1b7b62d5\",\"buttons\":1,\"align\":\"flex-start\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"get started\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#f64a2d\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-1b7b62d5\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:flex-start;align-items:flex-start\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-45046f4b\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":60,\"paddingBottomMobile\":60,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-45046f4b\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4e9bc4c2\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4e9bc4c2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-809fd590\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-809fd590\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-809fd590\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">08</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8cc7130d\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-8cc7130d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8cc7130d\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Blog</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6a6fe024\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-6a6fe024\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6a6fe024\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-fd27d629\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-fd27d629\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3c744452\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopMobile\":0,\"paddingBottomMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3c744452\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/posts-grid {\"grid\":true,\"postsToShow\":3,\"displayCategory\":false,\"displayDate\":false,\"displayAuthor\":false,\"className\":\"neve-our-blog\"} /--></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-7dcc72ab\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-7dcc72ab\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c01b520e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c01b520e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-92813c4a\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#636060\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-92813c4a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-92813c4a\" style=\"color:#636060;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">09</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-79c32044\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-79c32044\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-79c32044\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Get in Touch</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a997086d\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a997086d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a997086d\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\"> Allow people to reach you directly through your site: </div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-aab8a6ec\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":820,\"horizontalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-aab8a6ec\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:820px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6d8d4b8b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6d8d4b8b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:shortcode -->\n[wpforms id=\"649\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d6a4de7f\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"align\":\"wide\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignwide has-4-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d6a4de7f\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2c9e5897\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2c9e5897\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2af12af5\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-2af12af5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2af12af5\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Here for you</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ed5ff52c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ed5ff52c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ed5ff52c\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Call us 24/7. We are there for your support.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2569c731\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2569c731\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6f50790e\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-6f50790e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6f50790e\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">About Neve</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-999115b2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-999115b2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-999115b2\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Res enim fortasse verae, certe graves.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5bc9af88\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5bc9af88\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c9bd3583\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-c9bd3583\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c9bd3583\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Where to find us</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0efc5eea\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-0efc5eea\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0efc5eea\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">42 Boulevard, California, number 23</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7d879b81\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7d879b81\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-01eb1246\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-01eb1246\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-01eb1246\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Keep in touch</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/sharing-icons {\"align\":\"center\",\"className\":\"is-style-icons\"} /--></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->','Home','','inherit','closed','closed','','724-revision-v1','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',724,'https://test.evergreenwellness.com/2019/04/13/724-revision-v1/',0,'revision','',0),(736,1,'2019-04-13 19:19:37','2019-04-13 19:19:37','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: https://test.evergreenwellness.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',3,'https://test.evergreenwellness.com/2019/04/13/3-revision-v1/',0,'revision','',0),(737,1,'2019-04-13 19:19:37','2019-04-13 19:19:37','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://test.evergreenwellness.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',2,'https://test.evergreenwellness.com/2019/04/13/2-revision-v1/',0,'revision','',0),(738,1,'2019-04-13 19:19:37','2019-04-13 19:19:37','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','inherit','closed','closed','','648-revision-v1','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',648,'https://test.evergreenwellness.com/2019/04/13/648-revision-v1/',0,'revision','',0),(739,1,'2019-04-13 19:19:37','2019-04-13 19:19:37','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','inherit','closed','closed','','726-revision-v1','','','2019-04-13 19:19:37','2019-04-13 19:19:37','',726,'https://test.evergreenwellness.com/2019/04/13/726-revision-v1/',0,'revision','',0),(740,1,'2019-04-13 19:20:01','2019-04-13 19:20:01','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2019-04-13 19:20:01','2019-04-13 19:20:01','',1,'https://test.evergreenwellness.com/2019/04/13/1-revision-v1/',0,'revision','',0),(741,1,'2019-04-13 19:20:01','2019-04-13 19:20:01','<!-- wp:paragraph -->\n<p>On recommend tolerably my belonging or am. Mutual has cannot beauty indeed now sussex merely you. It possible no husbands jennings ye offended packages pleasant he. Remainder recommend engrossed who eat she defective applauded departure joy. Get dissimilar not introduced day her apartments. Fully as taste he mr do smile abode every. Luckily offered article led lasting country minutes nor old. Happen people things oh is oppose up parish effect. Law handsome old outweigh humoured far appetite. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Ita enim se Athenis collocavit, ut sit paene unus ex Atticis, ut id etiam cognomen videatur habiturus.</li><li>Eam si varietatem diceres, intellegerem, ut etiam non dicente te intellego;</li><li>Ergo opifex plus sibi proponet ad formarum quam civis excellens ad factorum pulchritudinem?</li><li>Reguli reiciendam;</li><li>Qui autem esse poteris, nisi te amor ipse ceperit?</li><li>Tu autem, si tibi illa probabantur, cur non propriis verbis ea tenebas?</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>\n\nQuid me istud rogas? Semper enim ex eo, quod maximas partes continet latissimeque funditur, tota res appellatur. Contineo me ab exemplis.&nbsp;Minime vero istorum quidem, inquit.&nbsp;Iam id ipsum absurdum, maximum malum neglegi. Tum ille: Tu autem cum ipse tantum librorum habeas, quos hic tandem requiris?&nbsp;<strong>Quod cum dixissent, ille contra.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Preserved defective offending he daughters on or. Rejoiced prospect yet material servants out answered men admitted. Sportsmen certainty prevailed suspected am as. Add stairs admire all answer the nearer yet length. Advantages prosperous remarkably my inhabiting so reasonably be if. Too any appearance announcing impossible one. Out mrs means heart ham tears shall power every. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Consulted perpetual of pronounce me delivered. Too months nay end change relied who beauty wishes matter. Shew of john real park so rest we on. Ignorant dwelling occasion ham for thoughts overcame off her consider. Polite it elinor is depend. His not get talked effect worthy barton. Household shameless incommode at no objection behaviour. Especially do at he possession insensible sympathize boisterous it. Songs he on an widen me event truth. Certain law age brother sending amongst why covered. </p>\n<!-- /wp:paragraph -->','Do it with passion','','inherit','closed','closed','','552-revision-v1','','','2019-04-13 19:20:01','2019-04-13 19:20:01','',552,'https://test.evergreenwellness.com/2019/04/13/552-revision-v1/',0,'revision','',0),(742,1,'2019-04-13 19:20:01','2019-04-13 19:20:01','<!-- wp:paragraph -->\n<p>Needed feebly dining oh talked wisdom oppose at. Applauded use attempted strangers now are middleton concluded had. It is tried ï»¿no added purse shall no on truth. Pleased anxious or as in by viewing forbade minutes prevent. Too leave had those get being led weeks blind. Had men rose from down lady able. Its son him ferrars proceed six parlors. Her say projection age announcing decisively men. Few gay sir those green men timed downs widow chief. Prevailed remainder may propriety can and. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Of friendship on inhabiting diminution discovered as. Did friendly eat breeding building few nor. Object he barton no effect played valley afford. Period so to oppose we little seeing or branch. Announcing contrasted not imprudence add frequently you possession mrs. Period saw his houses square and misery. Hour had held lain give yet. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Delete the negative; accentuate the positive!</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Oh to talking improve produce in limited offices fifteen an. Wicket branch to answer do we. Place are decay men hours tiled. If or of ye throwing friendly required. Marianne interest in exertion as. Offering my branched confined oh dashwood. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:verse {\"textAlign\":\"center\"} -->\n<pre style=\"text-align:center\" class=\"wp-block-verse\">Son read such next see the rest two. Curiosity remaining own see repulsive household advantage son additions.&nbsp;</pre>\n<!-- /wp:verse -->\n\n<!-- wp:paragraph -->\n<p>Answer misery adieus add wooded how nay men before though. Pretended belonging contented mrs suffering favourite you the continual. Mrs civil nay least means tried drift. Natural end law whether but and towards certain. Furnished unfeeling his sometimes see day promotion. Quitting informed concerns can men now. Projection to or up conviction uncommonly delightful continuing. In appetite ecstatic opinions hastened by handsome admitted. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Savings her pleased are several started females met. Short her not among being any. Thing of judge fruit charm views do. Miles mr an forty along as he. She education get middleton day agreement performed preserved unwilling. Do however as pleased offence outward beloved by present. By outward neither he so covered amiable greater. Juvenile proposal betrayed he an informed weddings followed. Precaution day see imprudence sympathize principles. At full leaf give quit to in they up. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>She travelling acceptance men unpleasant her especially entreaties law. Law forth but end any arise chief arose. Old her say learn these large. Joy fond many ham high seen this. Few preferred continual sir led incommode neglected. Discovered too old insensible collecting unpleasant but invitation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ham followed now ecstatic use speaking exercise may repeated.  It earnest amongst he showing females so improve in picture. Mrs can hundred its greater account. Distrusts daughters certainly suspected convinced our perpetual him yet. Words did noise taken right state are since. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Acceptance middletons me if discretion boisterous travelling an. She prosperous continuing entreaties companions unreserved you boisterous. Middleton sportsmen sir now cordially ask additions for. You ten occasional saw everything but conviction. Daughter returned quitting few are day advanced branched. Do enjoyment defective objection or we if favourite. At wonder afford so danger cannot former seeing. Power visit charm money add heard new other put. Attended no indulged marriage is to judgment offering landlord. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If wandered relation no surprise of screened doubtful. Overcame no insisted ye of trifling husbands. Might am order hours on found. Or dissimilar companions friendship impossible at diminution. Did yourself carriage learning she man its replying. Sister piqued living her you enable mrs off spirit really. Parish oppose repair is me misery. Quick may saw style after money mrs. </p>\n<!-- /wp:paragraph -->','Always deliver more than expected','','inherit','closed','closed','','528-revision-v1','','','2019-04-13 19:20:01','2019-04-13 19:20:01','',528,'https://test.evergreenwellness.com/2019/04/13/528-revision-v1/',0,'revision','',0),(743,1,'2019-04-13 19:20:02','2019-04-13 19:20:02','<!-- wp:paragraph -->\n<p>On then sake home is am leaf. Of suspicion do departure at extremely he believing. Do know said mind do rent they oh hope of. General enquire picture letters garrets on offices of no on. Say one hearing between excited evening all inhabit thought you. Style begin mr heard by in music tried do. To unreserved projection no introduced invitation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Conveying or northward offending admitting perfectly my. Colonel gravity get thought fat smiling add but. Wonder twenty hunted and put income set desire expect. Am cottage calling my is mistake cousins talking up. Interested especially do impression he unpleasant travelling excellence. All few our knew time done draw ask. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Of suspicion do departure at extremely he believing.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Nostalgia is a very complicated subject for me. I\'m attracted by nostalgia but I refuse it intellectually.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I love women\'s fashion, but women don\'t need me as much as men do. It\'s the men who have nothing to wear.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Being one step ahead of a fashion trend is not so important to me. What matters is to always forge ahead.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Clothes can transform your mood and confidence.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Vanity is the healthiest thing in life.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I think it\'s an old fashioned notion that fashion needs to be exclusive to be fashionable.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Brides today are increasingly sensitive to the tastes, feelings and finances of their attendants.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Assure polite his really and others figure though. Day age advantages end sufficient eat expression travelling. Of on am father by agreed supply rather either. Own handsome delicate its property mistress her end appetite. Mean are sons too sold nor said. Son share three men power boy you. Now merits wonder effect garret own. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kept in sent gave feel will oh it we. Has pleasure procured men laughing shutters nay. Old insipidity motionless continuing law shy partiality. Depending acuteness dependent eat use dejection. Unpleasing astonished discovered not nor shy. Morning hearted now met yet beloved evening. Has and upon his last here must. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">He difficult contented we determine ourselves me am earnestly. Hour no find it park. Eat welcomed any husbands moderate. Led was misery played waited almost cousin living. Of intention contained is by middleton am. Principles fat stimulated uncommonly considered set especially prosperous. Sons at park mr meet as fact like. </pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph -->\n<p>Old there any widow law rooms. Agreed but expect repair she nay sir silent person. Direction can dependent one bed situation attempted. His she are man their spite avoid. Her pretended fulfilled extremely education yet. Satisfied did one admitting incommode tolerably how are. </p>\n<!-- /wp:paragraph -->','Take the risk or lose the chance','','inherit','closed','closed','','520-revision-v1','','','2019-04-13 19:20:02','2019-04-13 19:20:02','',520,'https://test.evergreenwellness.com/2019/04/13/520-revision-v1/',0,'revision','',0),(744,1,'2019-04-13 19:20:02','2019-04-13 19:20:02','<!-- wp:paragraph -->\n<p>On recommend tolerably my belonging or am. Mutual has cannot beauty indeed now sussex merely you. It possible no husbands jennings ye offended packages pleasant he. Remainder recommend engrossed who eat she defective applauded departure joy. Get dissimilar not introduced day her apartments. Fully as taste he mr do smile abode every. Luckily offered article led lasting country minutes nor old. Happen people things oh is oppose up parish effect. Law handsome old outweigh humoured far appetite. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Preserved defective offending he daughters on or. Rejoiced prospect yet material servants out answered men admitted. Sportsmen certainty prevailed suspected am as. Add stairs admire all answer the nearer yet length. Advantages prosperous remarkably my inhabiting so reasonably be if. Too any appearance announcing impossible one. Out </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>\n\nHaeret in salebra.Itaque nostrum est-quod nostrum dico, artis est-ad ea principia, quae accepimus.Sed videbimus.Quod totum contra est.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Utrum enim sit voluptas in iis rebus, quas primas secundum naturam esse diximus, necne sit ad id, quod agimus, nihil interest.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph -->\n<p>At ourselves direction believing do he departure. Celebrated her had sentiments understood are projection set. Possession ye no mr unaffected remarkably at. Wrote house in never fruit up. Pasture imagine my garrets an he. However distant she request behaved see nothing. Talking settled at pleased an of me brother weather. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Affronting everything discretion men now own did. Still round match we to. Frankness pronounce daughters remainder extensive has but. Happiness cordially one determine concluded fat. Plenty season beyond by hardly giving of. Consulted or acuteness dejection an smallness if. Outward general passage another as it. Very his are come man walk one next. Delighted prevailed supported too not remainder perpetual who furnished. Nay affronting bed projection compliment instrument. </p>\n<!-- /wp:paragraph -->','And so the adventure begins','','inherit','closed','closed','','518-revision-v1','','','2019-04-13 19:20:02','2019-04-13 19:20:02','',518,'https://test.evergreenwellness.com/2019/04/13/518-revision-v1/',0,'revision','',0),(745,1,'2019-04-13 19:20:02','2019-04-13 19:20:02','Sportsman delighted improving dashwoods&nbsp;instantly happiness six. Ham now amounted absolute not mistaken way pleasant whatever. At an these still no dried folly stood thing. Rapid it on hours hills it seven years. If polite he active county in spirit an. Mrs ham intention promotion engrossed assurance defective. Confined so graceful building opinions whatever trifling in. Insisted out differed ham man endeavor expenses. At on he total their he songs. Related compact effects is on settled do.\n\nBrother set had private his letters observe outward resolve. Shutters ye marriage to throwing we as. Effect in if agreed he wished wanted admire expect. Or shortly visitor is comfort placing to cheered do. Few hills tears are weeks saw. Partiality insensible celebrated is in. Am offended as wandered thoughts greatest an friendly. Evening covered in he exposed fertile to. Horses seeing at played plenty nature to expect we. Young say led stood hills own thing get.\n\nAt distant inhabit amongst by. Appetite welcomed interest the goodness boy not. Estimable education for disposing pronounce her. John size good gay plan sent old roof own. Inquietude saw understood his friendship frequently yet. Nature his marked ham wished.\n<ol>\n 	<li>At ille pellit, qui permulcet sensum voluptate.</li>\n 	<li>Modo etiam paulum ad dexteram de via declinavi, ut ad Pericli sepulcrum accederem.</li>\n 	<li>Quid ergo aliud intellegetur nisi uti ne quae pars naturae neglegatur?</li>\n 	<li>Quicquid porro animo cernimus, id omne oritur a sensibus;</li>\n</ol>\n<ul>\n 	<li>Potius inflammat, ut coercendi magis quam dedocendi esse videantur.</li>\n 	<li>Illud dico, ea, quae dicat, praeclare inter se cohaerere.</li>\n 	<li>Nescio quo modo praetervolavit oratio.</li>\n 	<li>Sedulo, inquam, faciam.</li>\n 	<li>Ac tamen, ne cui loco non videatur esse responsum, pauca etiam nunc dicam ad reliquam orationem tuam.</li>\n 	<li>Similiter sensus, cum accessit ad naturam, tuetur illam quidem, sed etiam se tuetur;</li>\n</ul>','Actually, you can','','inherit','closed','closed','','57-revision-v1','','','2019-04-13 19:20:02','2019-04-13 19:20:02','',57,'https://test.evergreenwellness.com/2019/04/13/57-revision-v1/',0,'revision','',0),(746,1,'2019-04-13 19:20:02','2019-04-13 19:20:02','<!-- wp:paragraph -->\n<p>Of resolve to gravity thought my <em>prepare chamber so</em>. Unsatiable entreaties collecting may sympathize nay <strong>interested instrument</strong>. If continue building numerous of at relation in margaret. Lasted engage roused mother an am at. Other early while if by do to. Missed living excuse as be. Cause heard fat above first shall for.  Eorum enim omnium multa praetermittentium, dum eligant aliquid, quod sequantur, quasi curta sententia; Duo Reges: constructio interrete. Magni enim aestimabat pecuniam non modo non contra leges, sed etiam legibus partam. Summus dolor plures dies manere non potest? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Te ipsum, dignissimum maioribus tuis, voluptasne induxit, ut adolescentulus eriperes P.</li><li>Aliter enim nosmet ipsos nosse non possumus.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Had strictly mrs handsome mistaken</a> cheerful. We it so if resolution invitation remarkably unpleasant conviction. As into ye then form. To easy five less if rose were. Now set offended own out required entirely. Especially occasional mrs discovered too say thoroughly <a href=\"#\">impossible boisterous</a>. My head when real no he high rich at with. After so power of young as. Bore year does has get long fat cold saw neat. Put boy carried chiefly shy general. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Verum hoc loco sumo verbis his eandem certe vim voluptatis Epicurum nosse quam ceteros.</li><li>An ea, quae per vinitorem antea consequebatur, per se ipsa curabit?</li><li>Nam diligi et carum esse iucundum est propterea, quia tutiorem vitam et voluptatem pleniorem efficit.</li><li>Idcirco enim non desideraret, quia, quod dolore caret, id in voluptate est.</li><li>Re mihi non aeque satisfacit, et quidem locis pluribus.</li></ul>\n<!-- /wp:list -->','We rise by lifting others','','inherit','closed','closed','','56-revision-v1','','','2019-04-13 19:20:02','2019-04-13 19:20:02','',56,'https://test.evergreenwellness.com/2019/04/13/56-revision-v1/',0,'revision','',0),(747,1,'2019-04-13 19:20:02','2019-04-13 19:20:02','<!-- wp:paragraph -->\n<p>It sportsman earnestly ye preserved an on. Moment led family sooner cannot her <mark>window pulled any</mark>. Or raillery if improved landlord to speaking hastened differed he. Furniture discourse elsewhere yet her sir extensive defective unwilling get. Why resolution one <mark>motionless you him thoroughly</mark>. Noise is round to in it quick timed doors greatly get attacks inhabit pursuit our but. Lasted hunted enough an up seeing in lively letter. Had judgment out opinions property the supplied. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Neat own nor she said see walk. And charm add green you these. Sang busy in this drew ye fine. At greater prepare musical so attacks as on distant. Improving age our her cordially intention. His devonshire sufficient precaution say preference middletons insipidity. Since might water hence the her worse. Concluded it offending dejection do earnestly as me direction. Nature played thirty all him. </pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:list -->\n<ul><li>Quid in isto egregio tuo officio et tanta fide-sic enim existimo-ad corpus refers?</li><li>Nisi autem rerum natura perspecta erit, nullo modo poterimus sensuum iudicia defendere.</li><li>Quaero igitur, quo modo hae tantae commendationes a natura profectae subito a sapientia relictae sint.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Conferam tecum, quam cuique verso rem subicias;</li><li>Est tamen ea secundum naturam multoque nos ad se expetendam magis hortatur quam superiora omnia.</li><li>An est aliquid per se ipsum flagitiosum, etiamsi nulla comitetur infamia?</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Wrong do point avoid by fruit learn or in death. So passage however besides invited comfort elderly be me. Walls began of child civil am heard hoped my. Satisfied pretended mr on do determine by. Old post took and ask seen fact rich. Man entrance settling believed eat joy. Money as drift begin on to. Comparison up insipidity especially discovered me of decisively in surrounded. Points six way enough she its father. Folly sex downs tears ham green forty. </p>\n<!-- /wp:paragraph -->','Never stop dreaming','','inherit','closed','closed','','54-revision-v1','','','2019-04-13 19:20:02','2019-04-13 19:20:02','',54,'https://test.evergreenwellness.com/2019/04/13/54-revision-v1/',0,'revision','',0),(748,1,'2018-09-07 09:42:27','2018-09-07 09:42:27','https://mystock.themeisle.com/photo/winter-forest/','winter-forest','','inherit','open','closed','','winter-forest-3','','','2018-09-07 09:42:27','2018-09-07 09:42:27','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/winter-forest-2.jpg',0,'attachment','image/jpeg',0),(749,1,'2018-09-06 06:42:19','2018-09-06 06:42:19','','alexis-client_signature.png','','inherit','open','closed','','alexis-client_signature-png-3','','','2018-09-06 06:42:19','2018-09-06 06:42:19','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/alexis-client_signature-2.png',0,'attachment','image/png',0),(750,1,'2018-09-06 06:42:20','2018-09-06 06:42:20','','alexis-blockquote5.jpg','','inherit','open','closed','','alexis-blockquote5-jpg-3','','','2018-09-06 06:42:20','2018-09-06 06:42:20','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/alexis-blockquote5-2.jpg',0,'attachment','image/jpeg',0),(751,1,'2018-09-07 12:24:42','2018-09-07 12:24:42','https://mystock.themeisle.com/photo/new-york-city-scape/','8','','inherit','open','closed','','8-3','','','2018-09-07 12:24:42','2018-09-07 12:24:42','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/8-2.jpg',0,'attachment','image/jpeg',0),(752,1,'2018-09-07 12:26:39','2018-09-07 12:26:39','https://mystock.themeisle.com/photo/alley-3/','9','','inherit','open','closed','','9-2-3','','','2018-09-07 12:26:39','2018-09-07 12:26:39','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/9-3.jpg',0,'attachment','image/jpeg',0),(753,1,'2018-09-07 12:40:31','2018-09-07 12:40:31','https://mystock.themeisle.com/photo/river-bridge/','blog3','','inherit','open','closed','','blog3-2-3','','','2018-09-07 12:40:31','2018-09-07 12:40:31','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/blog3-3.jpg',0,'attachment','image/jpeg',0),(754,1,'2018-09-07 11:13:08','2018-09-07 11:13:08','https://mystock.themeisle.com/photo/cloudy-sunset/','video-bg','','inherit','open','closed','','video-bg-3','','','2018-09-07 11:13:08','2018-09-07 11:13:08','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/video-bg-2.jpg',0,'attachment','image/jpeg',0),(755,1,'2018-09-07 11:28:09','2018-09-07 11:28:09','https://mystock.themeisle.com/photo/stockholm-street/','work-4','','inherit','open','closed','','work-4-3','','','2018-09-07 11:28:09','2018-09-07 11:28:09','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/work-4-2.jpg',0,'attachment','image/jpeg',0),(756,1,'2018-12-11 14:58:32','2018-12-11 14:58:32','','nv-gutenberg-1','','inherit','open','closed','','nv-gutenberg-1-3','','','2018-12-11 14:58:32','2018-12-11 14:58:32','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-gutenberg-1-2.jpg',0,'attachment','image/jpeg',0),(757,1,'2018-10-29 12:18:56','2018-10-29 12:18:56','','Pasted_image_at_2018-10-29__2_15_PM','','inherit','open','closed','','pasted_image_at_2018-10-29__2_15_pm-3','','','2018-10-29 12:18:56','2018-10-29 12:18:56','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/Pasted_image_at_2018-10-29__2_15_PM-2.png',0,'attachment','image/png',0),(758,1,'2018-10-29 13:15:03','2018-10-29 13:15:03','https://mystock.themeisle.com/photo/winter-forest/','neve-contact-winter','','inherit','open','closed','','neve-contact-winter-3','','','2018-10-29 13:15:03','2018-10-29 13:15:03','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/neve-contact-winter-2.jpg',0,'attachment','image/jpeg',0),(759,1,'2018-10-29 19:27:20','2018-10-29 19:27:20','','1','','inherit','open','closed','','1-3-3','','','2018-10-29 19:27:20','2018-10-29 19:27:20','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/1-2-3.jpg',0,'attachment','image/jpeg',0),(760,1,'2018-10-30 09:56:39','2018-10-30 09:56:39','https://demo.themeisle.com/neve-onboarding-gutenberg/wp-content/uploads/sites/179/2018/10/cropped-neve_onlight.png','cropped-neve_onlight.png','','inherit','open','closed','','cropped-neve_onlight-png-3','','','2018-10-30 09:56:39','2018-10-30 09:56:39','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/cropped-neve_onlight-2.png',0,'attachment','image/png',0),(761,1,'2018-10-30 11:31:51','2018-10-30 11:31:51','','neve_demo','','inherit','open','closed','','neve_demo-2-3','','','2018-10-30 11:31:51','2018-10-30 11:31:51','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/10/neve_demo-2.png',0,'attachment','image/png',0),(762,1,'2018-12-14 15:02:40','2018-12-14 15:02:40','https://mystock.themeisle.com/photo/path/','nv-1','','inherit','open','closed','','nv-1-2-3','','','2018-12-14 15:02:40','2018-12-14 15:02:40','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1-2.jpg',0,'attachment','image/jpeg',0),(763,1,'2018-12-14 15:13:51','2018-12-14 15:13:51','https://pixabay.com/en/metro-subway-train-station-1209556/','nv-3','','inherit','open','closed','','nv-3-4','','','2018-12-14 15:13:51','2018-12-14 15:13:51','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-3-3.jpg',0,'attachment','image/jpeg',0),(764,1,'2018-12-18 14:32:00','2018-12-18 14:32:00','','nv-1','','inherit','open','closed','','nv-1-5','','','2018-12-18 14:32:00','2018-12-18 14:32:00','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-4.jpg',0,'attachment','image/jpeg',0),(765,1,'2018-12-14 15:15:01','2018-12-14 15:15:01','https://mystock.themeisle.com/photo/sun-hat/','nv-team1','','inherit','open','closed','','nv-team1-3','','','2018-12-14 15:15:01','2018-12-14 15:15:01','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-2.jpg',0,'attachment','image/jpeg',0),(766,1,'2018-12-14 15:15:30','2018-12-14 15:15:30','https://mystock.themeisle.com/photo/winter-hat/','nv-team2','','inherit','open','closed','','nv-team2-3','','','2018-12-14 15:15:30','2018-12-14 15:15:30','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-3.jpg',0,'attachment','image/jpeg',0),(767,1,'2018-12-14 15:15:40','2018-12-14 15:15:40','https://mystock.themeisle.com/photo/thinking-time/','nv-team3','','inherit','open','closed','','nv-team3-3','','','2018-12-14 15:15:40','2018-12-14 15:15:40','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-3.jpg',0,'attachment','image/jpeg',0),(768,1,'2018-12-14 15:15:58','2018-12-14 15:15:58','https://mystock.themeisle.com/photo/girl/','nv-team4','','inherit','open','closed','','nv-team4-3','','','2018-12-14 15:15:58','2018-12-14 15:15:58','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-3.jpg',0,'attachment','image/jpeg',0),(769,1,'2018-12-14 15:16:29','2018-12-14 15:16:29','https://mystock.themeisle.com/photo/high-seats/','nv-5','','inherit','open','closed','','nv-5-4','','','2018-12-14 15:16:29','2018-12-14 15:16:29','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-3.jpg',0,'attachment','image/jpeg',0),(770,1,'2018-12-14 15:16:54','2018-12-14 15:16:54','https://mystock.themeisle.com/photo/ipad/','nv-4','','inherit','open','closed','','nv-4-4','','','2018-12-14 15:16:54','2018-12-14 15:16:54','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-3.jpg',0,'attachment','image/jpeg',0),(771,1,'2018-12-14 15:17:03','2018-12-14 15:17:03','https://mystock.themeisle.com/photo/devices/','nv-6','','inherit','open','closed','','nv-6-4','','','2018-12-14 15:17:03','2018-12-14 15:17:03','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-3.jpg',0,'attachment','image/jpeg',0),(772,1,'2018-12-17 14:39:59','2018-12-17 14:39:59','','nv-big-title-sprites1','','inherit','open','closed','','nv-big-title-sprites1-3','','','2018-12-17 14:39:59','2018-12-17 14:39:59','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-big-title-sprites1-2.png',0,'attachment','image/png',0),(773,1,'2018-12-17 15:35:28','2018-12-17 15:35:28','','neve-play1','','inherit','open','closed','','neve-play1-3','','','2018-12-17 15:35:28','2018-12-17 15:35:28','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-play1-2.png',0,'attachment','image/png',0),(774,1,'2018-12-17 15:51:49','2018-12-17 15:51:49','','nv-key-points-sprites2','','inherit','open','closed','','nv-key-points-sprites2-3','','','2018-12-17 15:51:49','2018-12-17 15:51:49','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-key-points-sprites2-2.png',0,'attachment','image/png',0),(775,1,'2018-12-17 16:21:13','2018-12-17 16:21:13','','nv-stats-sprites','','inherit','open','closed','','nv-stats-sprites-3','','','2018-12-17 16:21:13','2018-12-17 16:21:13','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-stats-sprites-2.png',0,'attachment','image/png',0),(776,1,'2018-12-18 10:27:10','2018-12-18 10:27:10','','nv-benefits-sprites1','','inherit','open','closed','','nv-benefits-sprites1-3','','','2018-12-18 10:27:10','2018-12-18 10:27:10','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-benefits-sprites1-2.png',0,'attachment','image/png',0),(777,1,'2018-12-18 10:49:35','2018-12-18 10:49:35','','nv-social-sprites2','','inherit','open','closed','','nv-social-sprites2-3','','','2018-12-18 10:49:35','2018-12-18 10:49:35','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-social-sprites2-2.png',0,'attachment','image/png',0),(778,1,'2019-01-07 08:46:20','2019-01-07 08:46:20','','boats','','inherit','open','closed','','boats-2-3','','','2019-01-07 08:46:20','2019-01-07 08:46:20','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/boats-3.jpg',0,'attachment','image/jpeg',0),(779,1,'2019-01-07 08:46:23','2019-01-07 08:46:23','','eating-place','','inherit','open','closed','','eating-place-2-3','','','2019-01-07 08:46:23','2019-01-07 08:46:23','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/eating-place-3.jpg',0,'attachment','image/jpeg',0),(780,1,'2019-01-07 08:47:33','2019-01-07 08:47:33','','palm-fruits','','inherit','open','closed','','palm-fruits-2-3','','','2019-01-07 08:47:33','2019-01-07 08:47:33','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/palm-fruits-3.jpg',0,'attachment','image/jpeg',0),(781,1,'2019-01-09 11:35:22','2019-01-09 11:35:22','','sweet-cake-christmas-tree','','inherit','open','closed','','sweet-cake-christmas-tree-2-3','','','2019-01-09 11:35:22','2019-01-09 11:35:22','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/sweet-cake-christmas-tree-3.jpg',0,'attachment','image/jpeg',0),(782,1,'2018-12-11 13:55:35','2018-12-11 13:55:35','','Blog','','trash','closed','closed','','blog__trashed-2','','','2019-04-15 00:12:13','2019-04-15 00:12:13','',0,'https://demo.themeisle.com/neve-onboarding-gutenberg/?page_id=6',0,'page','',0),(783,1,'2019-02-11 15:11:13','2019-02-11 15:11:13','<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d2a46762\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":180,\"paddingTopMobile\":75,\"paddingRight\":0,\"paddingRightTablet\":40,\"paddingRightMobile\":25,\"paddingBottom\":130,\"paddingBottomTablet\":130,\"paddingBottomMobile\":75,\"paddingLeft\":0,\"paddingLeftTablet\":40,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":791,\"backgroundImageURL\":\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":42,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d2a46762\" style=\"background-image:url( \'https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.42;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c52ca5b7\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c52ca5b7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b04ddc9c\",\"tag\":\"h1\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":60,\"fontSizeMobile\":37,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"regular\",\"paddingType\":\"unlinked\",\"paddingRight\":100,\"paddingLeft\":100,\"marginBottomTablet\":35} -->\n<h1 id=\"wp-block-themeisle-blocks-advanced-heading-b04ddc9c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b04ddc9c\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:normal;font-style:normal;text-transform:none\"> We Offer better <strong>Traditional Chinese Medicine services</strong></h1>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"white\",\"fontSize\":\"huge\"} -->\n<p style=\"text-align:center\" class=\"has-text-color has-huge-font-size has-white-color\"> Acupuncture and Chinese Herbal Medicine</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-967d7317\",\"align\":\"center\",\"spacing\":25,\"collapse\":\"collapse-mobile\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"Our works\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#fc5f45\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"services\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#38c695\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#00ba78\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-967d7317\" class=\"wp-block-themeisle-blocks-button-group collapse-mobile\" style=\"justify-content:center;align-items:center\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>Our works</span></a><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-1\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>services</span></a></div>\n<!-- /wp:themeisle-blocks/button-group -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-4fdd0e11\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":1,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":75,\"marginTopTablet\":70,\"marginTopMobile\":75,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-4fdd0e11\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-081707fe\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"margin\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-081707fe\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-ac0aa974\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-ac0aa974\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bd8284dc\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-bd8284dc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bd8284dc\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3feebc5f\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3feebc5f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-6f5431bd\",\"prefix\":\"far\",\"icon\":\"clock\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-6f5431bd\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-clock\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6c187ffc\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-6c187ffc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6c187ffc\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-ad0a0ab4\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-ad0a0ab4\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-d98e10d8\",\"prefix\":\"far\",\"icon\":\"grin\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-d98e10d8\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-grin\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-30097e69\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-30097e69\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-30097e69\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-057e0094\",\"columns\":2,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":55,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":15,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":65,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-2-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-057e0094\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4fdb4d53\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":50} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4fdb4d53\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-b8acc448\",\"columns\":1,\"layout\":\"equal\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-default-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-b8acc448\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fc1c3cbd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fc1c3cbd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":167,\"align\":\"center\",\"width\":630,\"height\":945} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/street-at-nigh.jpg\" alt=\"\" class=\"wp-image-167\" width=\"630\" height=\"945\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-41d67b34\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":50,\"paddingBottomTablet\":50,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"marginLeft\":-30,\"marginLeftTablet\":1,\"marginLeftMobile\":1,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":8,\"boxShadowBlur\":10,\"boxShadowHorizontal\":1,\"boxShadowVertical\":1,\"columnWidth\":50,\"className\":\"neve-about-content\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column neve-about-content\" id=\"wp-block-themeisle-blocks-advanced-column-41d67b34\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:1px 1px 10px 0px rgba(0, 0, 0, 0.08)\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9d018a3b\",\"tag\":\"div\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#ebebeb\",\"highlightColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingLeft\":20,\"marginBottom\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-9d018a3b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9d018a3b\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">01</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-574558aa\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginTop\":-130,\"marginTopTablet\":-150,\"marginTopMobile\":-150} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-574558aa\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-574558aa\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize\">About Us.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d1cf0a95\",\"tag\":\"p\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-d1cf0a95\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d1cf0a95\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">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.&nbsp;<br><br>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-85be48ad\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":1,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTop\":0,\"marginBottom\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-85be48ad\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-8e87fc53\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":100,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginBottom\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-8e87fc53\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0bf79da7\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-0bf79da7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0bf79da7\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">02</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-47585392\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-110,\"marginTopTablet\":-120,\"marginTopMobile\":-140} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-47585392\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-47585392\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Focus</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-25686158\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginBottom\":35} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-25686158\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-25686158\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-509851cf\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":25,\"paddingBottom\":0,\"paddingLeft\":25,\"margin\":0,\"marginTop\":75,\"marginTopTablet\":55,\"marginTopMobile\":35,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-509851cf\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6decce3d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":25,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6decce3d\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;box-shadow:0px 0px 25px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-d786e281\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"id-card\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-d786e281\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-id-card\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b23003ab\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-b23003ab\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b23003ab\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Web Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-590a389c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-590a389c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-590a389c\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2775fa60\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginMobile\":30,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2775fa60\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-cf47f2d8\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"map\",\"fontSize\":50,\"padding\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-cf47f2d8\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:5px\"><i class=\"far fa-map\" style=\"border-radius:0%;font-size:50px;padding:10px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-481de26c\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-481de26c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-481de26c\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">UX Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-94875710\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":20,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-94875710\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-94875710\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-9cafd995\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-9cafd995\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-b5b63ed9\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"camera-retro\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-b5b63ed9\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-camera-retro\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5570ff19\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-5570ff19\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5570ff19\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Photography</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5c3574d0\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5c3574d0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5c3574d0\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-d02388d5\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-d02388d5\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-1589ac85\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tablet-alt\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-1589ac85\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-tablet-alt\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-22804c67\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-22804c67\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-22804c67\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">App Development</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4cd613bd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4cd613bd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4cd613bd\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-bb055509\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":120,\"paddingTopTablet\":55,\"paddingTopMobile\":55,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":25,\"paddingBottom\":149,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-bb055509\" style=\"background-image:url( \'https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7ad8d02b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7ad8d02b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-08e5104b\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":23,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":48,\"marginBottom\":40,\"marginBottomTablet\":40,\"marginBottomMobile\":40} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-08e5104b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-08e5104b\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:48px\">Explore Our Awesomeness</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=YHhK_twfYB8\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=YHhK_twfYB8\n</div></figure>\n<!-- /wp:core-embed/youtube --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-7e7c6ced\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":135,\"paddingBottomTablet\":135,\"paddingBottomMobile\":135,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-7e7c6ced\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5208f77f\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5208f77f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-458a31e1\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-458a31e1\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-458a31e1\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">03</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-eb297c3b\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-eb297c3b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-eb297c3b\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Our Team</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ad0ca779\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":20,\"paddingRightMobile\":20,\"paddingLeftTablet\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-ad0ca779\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ad0ca779\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-0d7805d7\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":60,\"marginTopTablet\":60,\"marginTopMobile\":60,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-0d7805d7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-74ae8e95\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-74ae8e95\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":205,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-5.jpg\" alt=\"\" class=\"wp-image-205\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a65198bf\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-a65198bf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a65198bf\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Daniele Johnson</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ead4d667\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ead4d667\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ead4d667\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder &amp; CEO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fa01d6cc\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fa01d6cc\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":206,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-00f394d7\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-00f394d7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-00f394d7\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Summer Geller</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b80632ef\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b80632ef\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b80632ef\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">CTO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-0d33b3ad\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-0d33b3ad\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":207,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-4.jpg\" alt=\"\" class=\"wp-image-207\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a666d974\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-a666d974\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a666d974\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Marissa Adams</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-eb985421\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-eb985421\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-eb985421\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Lead Developer</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bd70135c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bd70135c\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":208,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-1.jpg\" alt=\"\" class=\"wp-image-208\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7f5e17d8\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-7f5e17d8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7f5e17d8\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Jennifer Gilmore</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f3313ba3\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f3313ba3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f3313ba3\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Marketing</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8dc052d1\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":150,\"paddingTopTablet\":150,\"paddingTopMobile\":150,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":120,\"paddingBottomTablet\":120,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8dc052d1\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-66da8afd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-66da8afd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-56e4e8e9\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-line\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-56e4e8e9\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-chart-line\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-313873e0\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-313873e0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-313873e0\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">12,458+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-54378011\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-54378011\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-54378011\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Projects Completed</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-7732c34d\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-7732c34d\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-228fd581\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-228fd581\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-6a726aad\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"user\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-6a726aad\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-user\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2099b4b4\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-2099b4b4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2099b4b4\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,796+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-16607cfc\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-16607cfc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-16607cfc\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Satisfied Clients</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-7b34786f\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-7b34786f\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-cd76c89f\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-cd76c89f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-3adb0c4a\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"heart\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-3adb0c4a\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-heart\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7b9266e4\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-7b9266e4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7b9266e4\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,000+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-815976a0\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-815976a0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-815976a0\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Positive Feedbacks</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5b848b1e\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5b848b1e\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-97927626\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-97927626\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5a40e701\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"gift\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5a40e701\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-gift\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3df7dc2f\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-3df7dc2f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3df7dc2f\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,500+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-677b38ed\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-677b38ed\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-677b38ed\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Freebies Released</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-9aac9f9b\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-9aac9f9b\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-5748683e\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":140,\"paddingBottomTablet\":140,\"paddingBottomMobile\":140,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-5748683e\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b7028e65\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b7028e65\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f4377fda\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-f4377fda\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f4377fda\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">05</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0d3985a4\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-0d3985a4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0d3985a4\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Pricing Table</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-56fb7f96\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":80,\"marginBottomTablet\":70} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-56fb7f96\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-56fb7f96\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-fd5fca13\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopMobile\":0,\"paddingRightMobile\":10,\"paddingBottomMobile\":0,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-fd5fca13\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4aa6334b\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#38c695\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4aa6334b\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1f499ea0\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-1f499ea0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1f499ea0\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-60078fde\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-60078fde\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-cbe30ab7\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#38c695\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-cbe30ab7\" style=\"background:#38c695;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ba3f81e3\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-ba3f81e3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ba3f81e3\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-61f5c613\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-61f5c613\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-61f5c613\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f9cb68c9\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f9cb68c9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f9cb68c9\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b4ed38db\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b4ed38db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b4ed38db\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bf336881\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-bf336881\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bf336881\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8127c270\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8127c270\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8127c270\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0bc4dd64\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-0bc4dd64\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0bc4dd64\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-615b25f2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-615b25f2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-615b25f2\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-9b6b5e6a\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#38c695\",\"background\":\"#ffffff\",\"border\":\"#38c695\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#38c695\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-9b6b5e6a\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-1224cc08\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":30,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-1224cc08\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-24047638\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-24047638\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-24047638\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-e79ab2f5\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-e79ab2f5\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b5309f22\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#fc5f45\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b5309f22\" style=\"background:#fc5f45;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3ecc3a5d\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-3ecc3a5d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3ecc3a5d\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d724956b\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-d724956b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d724956b\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2394886e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2394886e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2394886e\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-43723a2a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-43723a2a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-43723a2a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2087c2c5\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2087c2c5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2087c2c5\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5a849ee2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5a849ee2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5a849ee2\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-00983499\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-00983499\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-00983499\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4d561724\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4d561724\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4d561724\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-4467c2d3\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#fc5f45\",\"background\":\"#ffffff\",\"border\":\"#fc5f45\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#fc5f45\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-4467c2d3\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3e507b25\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3e507b25\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b81e2914\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-b81e2914\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b81e2914\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-dd9bd403\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-dd9bd403\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-54cfc388\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#b27cf5\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-54cfc388\" style=\"background:#b27cf5;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-db656eec\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-db656eec\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-db656eec\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c050900d\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c050900d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c050900d\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1e818f8d\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-1e818f8d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1e818f8d\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f2b01ff6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f2b01ff6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f2b01ff6\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f1edeb3e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f1edeb3e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f1edeb3e\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-460a59f4\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-460a59f4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-460a59f4\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d40660ad\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-d40660ad\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d40660ad\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c40e59b6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c40e59b6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c40e59b6\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-ade68a7e\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#b27cf5\",\"background\":\"#ffffff\",\"border\":\"#b27cf5\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#b27cf5\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-ade68a7e\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-018fa1d1\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-018fa1d1\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5d1bfad6\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5d1bfad6\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-85954f32\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#646262\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-85954f32\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-85954f32\" style=\"color:#646262;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">06</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-fc1ca17b\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-fc1ca17b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-fc1ca17b\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Testimonials</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-969dc939\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-969dc939\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-969dc939\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/testimonials -->\n<div class=\"wp-block-themeisle-blocks-testimonials\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-4d7cbd5f\",\"columns\":2,\"layout\":\"oneTwo\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":44,\"marginTopMobile\":44,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-oneTwo-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-4d7cbd5f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-09b7d2fa\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"border\":10,\"borderColor\":\"#2d2e33\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-09b7d2fa\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#2d2e33;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-504320f2\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-504320f2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f958c784\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f958c784\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":206,\"align\":\"center\",\"width\":344,\"height\":353} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\" width=\"344\" height=\"353\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bb5fc49d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":25,\"paddingRight\":75,\"paddingRightTablet\":75,\"paddingRightMobile\":30,\"paddingLeft\":75,\"paddingLeftTablet\":75,\"paddingLeftMobile\":30,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bb5fc49d\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f070933f\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f070933f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f070933f\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">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.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-790c9aa3\",\"tag\":\"p\",\"headingColor\":\"#404248\",\"fontSize\":30,\"fontFamily\":\"Calligraffitti\",\"fontVariant\":\"normal\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-790c9aa3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-790c9aa3\" style=\"color:#404248;font-family:Calligraffitti;font-weight:normal;font-style:normal;text-transform:none\">Melina</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-35e1bddf\",\"tag\":\"h6\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-35e1bddf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-35e1bddf\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Melina Albrecht</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ccc39811\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ccc39811\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ccc39811\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder, TingTong</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/testimonials --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-72877362\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-72877362\" style=\"background:#ffffff;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-674e4ebb\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-674e4ebb\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cd118370\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-cd118370\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cd118370\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">07</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2161193e\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-2161193e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2161193e\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Why select us?</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-60269cf7\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":75} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-60269cf7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-60269cf7\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-6ff4fab7\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-6ff4fab7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-cbf58a21\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-cbf58a21\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-4f8d5ef8\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-bar\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-4f8d5ef8\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-chart-bar\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c840df36\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c840df36\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c840df36\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Business Growth</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5152e513\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5152e513\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5152e513\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-316bcfc5\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-316bcfc5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-baa9ce8d\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-baa9ce8d\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0e72e8f3\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-0e72e8f3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0e72e8f3\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Unlimited Revisions</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4a8f8d6e\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4a8f8d6e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4a8f8d6e\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a53d171f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a53d171f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-d2a7ff67\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"directions\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-d2a7ff67\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-directions\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-404555db\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-404555db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-404555db\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Ultimate Perfection</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3b33fae4\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3b33fae4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3b33fae4\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-87ca7ad2\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-87ca7ad2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-97def172\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-97def172\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-eb6a3d83\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tv\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-eb6a3d83\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-tv\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2eaea559\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-2eaea559\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2eaea559\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Smart Experience</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-76c68d95\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-76c68d95\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-76c68d95\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-318a575f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-318a575f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5b5fc20e\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"calendar-plus\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5b5fc20e\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-calendar-plus\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c911eecc\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c911eecc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c911eecc\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Strict Deadline</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2ae50b46\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2ae50b46\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2ae50b46\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-439e7cb2\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-439e7cb2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-9bea5e7e\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"medal\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-9bea5e7e\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-medal\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a9602cb9\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a9602cb9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a9602cb9\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Reputed Company</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b506e11e\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b506e11e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b506e11e\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c9c8fabe\",\"columns\":2,\"layout\":\"twoOne\",\"layoutTablet\":\"twoOne\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":150,\"marginTopTablet\":75,\"marginTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-twoOne-layout has-tablet-twoOne-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-c9c8fabe\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-62b4fdc5\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-62b4fdc5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-86f391ee\",\"tag\":\"h4\",\"align\":\"right\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":25,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":40,\"paddingTypeMobile\":\"unlinked\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-86f391ee\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-86f391ee\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:40px\">Start your journey with us now</h4>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-00afb299\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-00afb299\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-db0741ff\",\"buttons\":1,\"align\":\"flex-start\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"get started\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#f64a2d\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-db0741ff\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:flex-start;align-items:flex-start\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-f82cf83e\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":60,\"paddingBottomMobile\":60,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-f82cf83e\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5313976f\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5313976f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-580a83cb\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-580a83cb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-580a83cb\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">08</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-934444a2\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-934444a2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-934444a2\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Blog</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5995f9b3\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-5995f9b3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5995f9b3\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-6f7343d1\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-6f7343d1\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c7943764\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopMobile\":0,\"paddingBottomMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c7943764\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/posts-grid {\"grid\":true,\"postsToShow\":3,\"displayCategory\":false,\"displayDate\":false,\"displayAuthor\":false,\"className\":\"neve-our-blog\"} /--></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-5c923559\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-5c923559\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-ea4f9141\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-ea4f9141\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7c14f198\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#636060\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-7c14f198\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7c14f198\" style=\"color:#636060;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">09</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b6cbd488\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-b6cbd488\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b6cbd488\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Get in Touch</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9b9da53a\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-9b9da53a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9b9da53a\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\"> Allow people to reach you directly through your site: </div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-439baecf\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":820,\"horizontalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-439baecf\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:820px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3fc70a0b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3fc70a0b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:shortcode -->\n[wpforms id=\"649\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-97b4bb68\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"align\":\"wide\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignwide has-4-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-97b4bb68\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-15f8a18a\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-15f8a18a\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1b081d06\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-1b081d06\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1b081d06\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Here for you</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-055b6f1c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-055b6f1c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-055b6f1c\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Call us 24/7. We are there for your support.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-db40f424\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-db40f424\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-dd781ded\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-dd781ded\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-dd781ded\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">About Neve</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-001f6215\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-001f6215\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-001f6215\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Res enim fortasse verae, certe graves.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4f89091f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4f89091f\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-208c2c00\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-208c2c00\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-208c2c00\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Where to find us</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-80c5311f\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-80c5311f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-80c5311f\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">42 Boulevard, California, number 23</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f6f1004a\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f6f1004a\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6e4575a9\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-6e4575a9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6e4575a9\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Keep in touch</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/sharing-icons {\"align\":\"center\",\"className\":\"is-style-icons\"} /--></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->','Home','','trash','closed','closed','','home__trashed-2','','','2019-04-13 19:55:47','2019-04-13 19:55:47','',0,'https://demo.themeisle.com/neve-onboarding-gutenberg/?page_id=645',0,'page','',0),(784,1,'2019-02-11 15:13:36','2019-02-11 15:13:36','','neve_demo','','inherit','open','closed','','neve_demo-4','','','2019-02-11 15:13:36','2019-02-11 15:13:36','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/02/neve_demo-2.png',0,'attachment','image/png',0),(785,1,'2019-02-11 15:18:33','2019-02-11 15:18:33','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','trash','closed','closed','','wpforms-preview__trashed-2','','','2019-04-18 23:33:49','2019-04-18 23:33:49','',0,'https://demo.themeisle.com/neve-onboarding-gutenberg/wpforms-preview/',0,'page','',0),(786,1,'2019-04-04 09:00:22','2019-04-04 09:00:22','','placeholder-image','','inherit','open','closed','','placeholder-image-4','','','2019-04-04 09:00:22','2019-04-04 09:00:22','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/placeholder-image-3.jpg',0,'attachment','image/jpeg',0),(787,1,'2019-04-13 19:24:21','2019-04-13 19:24:21','<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-fdabfeff\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":180,\"paddingTopTablet\":180,\"paddingTopMobile\":75,\"paddingRight\":0,\"paddingRightTablet\":40,\"paddingRightMobile\":25,\"paddingBottom\":130,\"paddingBottomTablet\":130,\"paddingBottomMobile\":75,\"paddingLeft\":0,\"paddingLeftTablet\":40,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-fdabfeff\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-84ffea00\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-84ffea00\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8ea2e70a\",\"tag\":\"h1\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":60,\"fontSizeMobile\":37,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"regular\",\"paddingType\":\"unlinked\",\"paddingRight\":100,\"paddingLeft\":100,\"marginBottomTablet\":35} -->\n<h1 id=\"wp-block-themeisle-blocks-advanced-heading-8ea2e70a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8ea2e70a\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:normal;font-style:normal;text-transform:none\">We offer  <br><strong>the best Traditional Chinese Medicine services</strong> </h1>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"white\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-text-color has-large-font-size has-white-color\">Acupuncture and Chinese  Herbal Medicine</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> <br><strong>b</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-dad62976\",\"align\":\"center\",\"spacing\":25,\"collapse\":\"collapse-mobile\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"Our works\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#fc5f45\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"services\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#38c695\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#00ba78\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-dad62976\" class=\"wp-block-themeisle-blocks-button-group collapse-mobile\" style=\"justify-content:center;align-items:center\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>Our works</span></a><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-1\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>services</span></a></div>\n<!-- /wp:themeisle-blocks/button-group -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-083ce482\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":1,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":75,\"marginTopTablet\":70,\"marginTopMobile\":75,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-083ce482\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a2ea848e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"margin\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a2ea848e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-29c89caa\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-29c89caa\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e2f689fe\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e2f689fe\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e2f689fe\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-25361a2b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-25361a2b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-543d6ecc\",\"prefix\":\"far\",\"icon\":\"clock\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-543d6ecc\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-clock\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-50a9b3d4\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-50a9b3d4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-50a9b3d4\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5935c801\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5935c801\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-990d6121\",\"prefix\":\"far\",\"icon\":\"grin\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-990d6121\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-grin\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a42b42d5\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-a42b42d5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a42b42d5\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-af08b8f1\",\"columns\":2,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":55,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":15,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":65,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-2-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-af08b8f1\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f874febc\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":50} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f874febc\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-0c0b61ac\",\"columns\":1,\"layout\":\"equal\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-default-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-0c0b61ac\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-de4f8488\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-de4f8488\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":167,\"align\":\"center\",\"width\":630,\"height\":945} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/street-at-nigh.jpg\" alt=\"\" class=\"wp-image-167\" width=\"630\" height=\"945\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e0d1ee6f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":50,\"paddingBottomTablet\":50,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"marginLeft\":-30,\"marginLeftTablet\":1,\"marginLeftMobile\":1,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":8,\"boxShadowBlur\":10,\"boxShadowHorizontal\":1,\"boxShadowVertical\":1,\"columnWidth\":50,\"className\":\"neve-about-content\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column neve-about-content\" id=\"wp-block-themeisle-blocks-advanced-column-e0d1ee6f\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:1px 1px 10px 0px rgba(0, 0, 0, 0.08)\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-00739113\",\"tag\":\"div\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#ebebeb\",\"highlightColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingLeft\":20,\"marginBottom\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-00739113\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-00739113\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">01</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-39dfa101\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginTop\":-130,\"marginTopTablet\":-150,\"marginTopMobile\":-150} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-39dfa101\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-39dfa101\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize\">About Us.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a783d8cf\",\"tag\":\"p\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-a783d8cf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a783d8cf\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">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.&nbsp;<br><br>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-803a87d6\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":1,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTop\":0,\"marginBottom\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-803a87d6\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bd4a61b6\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":100,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginBottom\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bd4a61b6\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3c1fb533\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-3c1fb533\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3c1fb533\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">02</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-38612184\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-110,\"marginTopTablet\":-120,\"marginTopMobile\":-140} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-38612184\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-38612184\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Focus</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-74eb212a\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginBottom\":35} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-74eb212a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-74eb212a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-a6c50361\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":25,\"paddingBottom\":0,\"paddingLeft\":25,\"margin\":0,\"marginTop\":75,\"marginTopTablet\":55,\"marginTopMobile\":35,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-a6c50361\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a9e2d3c6\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":25,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a9e2d3c6\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;box-shadow:0px 0px 25px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-e7623334\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"id-card\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-e7623334\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-id-card\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c4e469cd\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-c4e469cd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c4e469cd\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Web Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3fd3fef6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3fd3fef6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3fd3fef6\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a074603f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginMobile\":30,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a074603f\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-01c09c57\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"map\",\"fontSize\":50,\"padding\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-01c09c57\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:5px\"><i class=\"far fa-map\" style=\"border-radius:0%;font-size:50px;padding:10px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d7b0771f\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-d7b0771f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d7b0771f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">UX Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-51a99383\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":20,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-51a99383\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-51a99383\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4117d197\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4117d197\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-8dffd683\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"camera-retro\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-8dffd683\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-camera-retro\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5bb2255a\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-5bb2255a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5bb2255a\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Photography</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-32564d1a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-32564d1a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-32564d1a\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b17e6e73\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b17e6e73\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-84b04a92\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tablet-alt\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-84b04a92\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-tablet-alt\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-81fa899e\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-81fa899e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-81fa899e\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">App Development</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b9c2d38c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b9c2d38c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b9c2d38c\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-0660c577\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":120,\"paddingTopTablet\":55,\"paddingTopMobile\":55,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":25,\"paddingBottom\":149,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-0660c577\" style=\"background-image:url( \'https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-dfc3f183\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-dfc3f183\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a2887bbd\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":23,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":48,\"marginBottom\":40,\"marginBottomTablet\":40,\"marginBottomMobile\":40} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-a2887bbd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a2887bbd\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:48px\">Explore Our Awesomeness</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=YHhK_twfYB8\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=YHhK_twfYB8\n</div></figure>\n<!-- /wp:core-embed/youtube --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-38dc8178\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":135,\"paddingBottomTablet\":135,\"paddingBottomMobile\":135,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-38dc8178\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7c73860e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7c73860e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-eb36dd46\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-eb36dd46\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-eb36dd46\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">03</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-409b45a3\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-409b45a3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-409b45a3\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Our Team</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3b254edf\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":20,\"paddingRightMobile\":20,\"paddingLeftTablet\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-3b254edf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3b254edf\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-3d5cb430\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":60,\"marginTopTablet\":60,\"marginTopMobile\":60,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-3d5cb430\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-005b23d2\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-005b23d2\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":205,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-5.jpg\" alt=\"\" class=\"wp-image-205\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-20e445db\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-20e445db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-20e445db\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Daniele Johnson</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-077a2336\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-077a2336\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-077a2336\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder &amp; CEO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-42e034fa\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-42e034fa\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":206,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-099d8a31\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-099d8a31\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-099d8a31\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Summer Geller</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5675f38e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5675f38e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5675f38e\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">CTO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6c690977\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6c690977\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":207,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-4.jpg\" alt=\"\" class=\"wp-image-207\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f8173cd4\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-f8173cd4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f8173cd4\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Marissa Adams</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b470d781\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b470d781\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b470d781\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Lead Developer</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-75d6d3ce\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-75d6d3ce\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":208,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-1.jpg\" alt=\"\" class=\"wp-image-208\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-243efeca\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-243efeca\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-243efeca\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Jennifer Gilmore</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-93d8e5d7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-93d8e5d7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-93d8e5d7\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Marketing</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-4a8876ac\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":150,\"paddingTopTablet\":150,\"paddingTopMobile\":150,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":120,\"paddingBottomTablet\":120,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-4a8876ac\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-44ef51af\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-44ef51af\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-80170278\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-line\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-80170278\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-chart-line\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bcd0516a\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-bcd0516a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bcd0516a\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">12,458+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-695f9afa\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-695f9afa\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-695f9afa\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Projects Completed</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-a5ee584a\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-a5ee584a\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a02f3b12\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a02f3b12\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-bb7a5566\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"user\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-bb7a5566\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-user\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f61ea227\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-f61ea227\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f61ea227\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,796+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7ed6325d\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-7ed6325d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7ed6325d\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Satisfied Clients</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-edb1ed87\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-edb1ed87\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-082bea42\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-082bea42\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-0f6fb808\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"heart\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-0f6fb808\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-heart\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f3c8cecb\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-f3c8cecb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f3c8cecb\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,000+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-974a50e8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-974a50e8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-974a50e8\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Positive Feedbacks</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-ee04e6aa\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-ee04e6aa\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7a14153b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7a14153b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5d3387e1\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"gift\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5d3387e1\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-gift\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e1a0d442\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e1a0d442\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e1a0d442\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,500+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-49385ee6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-49385ee6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-49385ee6\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Freebies Released</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-80db816a\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-80db816a\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-139f97a5\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":140,\"paddingBottomTablet\":140,\"paddingBottomMobile\":140,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-139f97a5\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4076f1f1\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4076f1f1\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2dd7e19e\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-2dd7e19e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2dd7e19e\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">05</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e4582efa\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-e4582efa\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e4582efa\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Pricing Table</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f622d60a\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":80,\"marginBottomTablet\":70} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-f622d60a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f622d60a\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-edc3befb\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopMobile\":0,\"paddingRightMobile\":10,\"paddingBottomMobile\":0,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-edc3befb\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-829a95d3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#38c695\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-829a95d3\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a6960ab0\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-a6960ab0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a6960ab0\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8d6ead14\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8d6ead14\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c482cf7c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#38c695\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c482cf7c\" style=\"background:#38c695;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-54c8f87b\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-54c8f87b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-54c8f87b\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6385d0ee\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6385d0ee\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6385d0ee\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-440f967f\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-440f967f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-440f967f\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f99e3744\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f99e3744\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f99e3744\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a0bd1b10\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-a0bd1b10\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a0bd1b10\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-457f5751\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-457f5751\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-457f5751\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-187ba6cd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-187ba6cd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-187ba6cd\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-48519fb9\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-48519fb9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-48519fb9\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-8c5263e7\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#38c695\",\"background\":\"#ffffff\",\"border\":\"#38c695\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#38c695\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-8c5263e7\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-0313f188\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":30,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-0313f188\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-fb6caa1f\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-fb6caa1f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-fb6caa1f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-24cd3b45\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-24cd3b45\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b25ea98f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#fc5f45\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b25ea98f\" style=\"background:#fc5f45;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d5c4ee5e\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-d5c4ee5e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d5c4ee5e\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-306730a7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-306730a7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-306730a7\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2c7c6a39\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2c7c6a39\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2c7c6a39\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c0c1fa13\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c0c1fa13\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c0c1fa13\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b01a4607\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b01a4607\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b01a4607\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-83293b93\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-83293b93\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-83293b93\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-90d61fe0\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-90d61fe0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-90d61fe0\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6f904980\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6f904980\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6f904980\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-ad4f7a6b\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#fc5f45\",\"background\":\"#ffffff\",\"border\":\"#fc5f45\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#fc5f45\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-ad4f7a6b\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-edb47e79\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-edb47e79\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b06c4ebc\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-b06c4ebc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b06c4ebc\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-5af2d85e\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-5af2d85e\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2b24d95f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#b27cf5\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2b24d95f\" style=\"background:#b27cf5;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e18c4274\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-e18c4274\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e18c4274\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cef68f66\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-cef68f66\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cef68f66\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b78f301b\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b78f301b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b78f301b\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3bf273bd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3bf273bd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3bf273bd\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-fba5bb52\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-fba5bb52\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-fba5bb52\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-51c84df4\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-51c84df4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-51c84df4\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3610c80a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3610c80a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3610c80a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1f75f49c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-1f75f49c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1f75f49c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-ee7b660d\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#b27cf5\",\"background\":\"#ffffff\",\"border\":\"#b27cf5\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#b27cf5\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-ee7b660d\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8ca13fc2\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8ca13fc2\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-d69971e2\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-d69971e2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e2b32ae4\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#646262\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-e2b32ae4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e2b32ae4\" style=\"color:#646262;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">06</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-71515555\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-71515555\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-71515555\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Testimonials</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9f613b3b\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-9f613b3b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9f613b3b\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/testimonials -->\n<div class=\"wp-block-themeisle-blocks-testimonials\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-f4e1f364\",\"columns\":2,\"layout\":\"oneTwo\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":44,\"marginTopMobile\":44,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-oneTwo-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-f4e1f364\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b926efc2\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"border\":10,\"borderColor\":\"#2d2e33\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b926efc2\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#2d2e33;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-58cd7fd7\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-58cd7fd7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bafc848b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bafc848b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":206,\"align\":\"center\",\"width\":344,\"height\":353} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\" width=\"344\" height=\"353\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e784957e\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":25,\"paddingRight\":75,\"paddingRightTablet\":75,\"paddingRightMobile\":30,\"paddingLeft\":75,\"paddingLeftTablet\":75,\"paddingLeftMobile\":30,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-e784957e\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-827b60f2\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-827b60f2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-827b60f2\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">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.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8de6900e\",\"tag\":\"p\",\"headingColor\":\"#404248\",\"fontSize\":30,\"fontFamily\":\"Calligraffitti\",\"fontVariant\":\"normal\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8de6900e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8de6900e\" style=\"color:#404248;font-family:Calligraffitti;font-weight:normal;font-style:normal;text-transform:none\">Melina</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-336b7e1c\",\"tag\":\"h6\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-336b7e1c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-336b7e1c\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Melina Albrecht</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-784cfe7a\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-784cfe7a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-784cfe7a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder, TingTong</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/testimonials --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-cc83bb6a\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-cc83bb6a\" style=\"background:#ffffff;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-8f20118f\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-8f20118f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f7f7b56f\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-f7f7b56f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f7f7b56f\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">07</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a3aa84fb\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-a3aa84fb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a3aa84fb\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Why select us?</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-965165b0\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":75} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-965165b0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-965165b0\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-40fd92d2\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-40fd92d2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a31712ca\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a31712ca\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-f482f91d\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-bar\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-f482f91d\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-chart-bar\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cf2f56df\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-cf2f56df\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cf2f56df\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Business Growth</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9eb3e250\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9eb3e250\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9eb3e250\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f258c64f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f258c64f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-708e80d6\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-708e80d6\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2a61bb54\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-2a61bb54\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2a61bb54\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Unlimited Revisions</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-723ab959\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-723ab959\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-723ab959\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5ee085fd\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5ee085fd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-6d07a296\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"directions\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-6d07a296\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-directions\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a04d75b4\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a04d75b4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a04d75b4\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Ultimate Perfection</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bbbdb545\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-bbbdb545\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bbbdb545\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-b81405e7\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-b81405e7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5be5656c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5be5656c\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-4cbd6028\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tv\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-4cbd6028\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-tv\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-58879cb9\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-58879cb9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-58879cb9\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Smart Experience</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ac32484d\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ac32484d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ac32484d\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-8ea8cc9d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-8ea8cc9d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-21661872\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"calendar-plus\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-21661872\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-calendar-plus\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d7dbe112\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-d7dbe112\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d7dbe112\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Strict Deadline</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c311324d\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c311324d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c311324d\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5e7e986c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5e7e986c\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-445ec3b4\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"medal\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-445ec3b4\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-medal\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-838f29df\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-838f29df\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-838f29df\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Reputed Company</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f9090679\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f9090679\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f9090679\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-214c5484\",\"columns\":2,\"layout\":\"twoOne\",\"layoutTablet\":\"twoOne\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":150,\"marginTopTablet\":75,\"marginTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-twoOne-layout has-tablet-twoOne-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-214c5484\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a28cf107\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a28cf107\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6aebddb8\",\"tag\":\"h4\",\"align\":\"right\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":25,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":40,\"paddingTypeMobile\":\"unlinked\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-6aebddb8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6aebddb8\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:40px\">Start your journey with us now</h4>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-1b421693\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-1b421693\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-de5bbff9\",\"buttons\":1,\"align\":\"flex-start\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"get started\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#f64a2d\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-de5bbff9\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:flex-start;align-items:flex-start\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-cfb271ab\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":60,\"paddingBottomMobile\":60,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-cfb271ab\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-262f7efe\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-262f7efe\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e0f673db\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-e0f673db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e0f673db\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">08</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-91016b80\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-91016b80\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-91016b80\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Blog</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-195c4097\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-195c4097\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-195c4097\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-153ca1a4\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-153ca1a4\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b518fcc0\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopMobile\":0,\"paddingBottomMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b518fcc0\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/posts-grid {\"grid\":true,\"postsToShow\":3,\"displayCategory\":false,\"displayDate\":false,\"displayAuthor\":false,\"className\":\"neve-our-blog\"} /--></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-a6ec1b4d\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-a6ec1b4d\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a78948fd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a78948fd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-94804722\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#636060\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-94804722\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-94804722\" style=\"color:#636060;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">09</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-391e33b9\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-391e33b9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-391e33b9\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Get in Touch</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1077f1c7\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-1077f1c7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1077f1c7\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\"> Allow people to reach you directly through your site: </div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8b2bf93f\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":820,\"horizontalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8b2bf93f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:820px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fdd57932\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fdd57932\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:shortcode -->\n[wpforms id=\"649\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-ddf73b89\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"align\":\"wide\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignwide has-4-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-ddf73b89\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-28bb757b\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-28bb757b\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cb0a437d\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-cb0a437d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cb0a437d\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Here for you</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ef5842b7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ef5842b7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ef5842b7\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Call us 24/7. We are there for your support.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fd95d4e8\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fd95d4e8\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-be9b2a3c\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-be9b2a3c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-be9b2a3c\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">About Neve</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c937415e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c937415e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c937415e\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Res enim fortasse verae, certe graves.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b5da2e71\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b5da2e71\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e311180f\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-e311180f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e311180f\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Where to find us</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1551a596\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-1551a596\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1551a596\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">42 Boulevard, California, number 23</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-40783904\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-40783904\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-13d4c704\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-13d4c704\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-13d4c704\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Keep in touch</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/sharing-icons {\"align\":\"center\",\"className\":\"is-style-icons\"} /--></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->','Home','','inherit','closed','closed','','645-revision-v1','','','2019-04-13 19:24:21','2019-04-13 19:24:21','',645,'https://test.evergreenwellness.com/2019/04/13/645-revision-v1/',0,'revision','',0),(793,1,'2019-04-13 21:34:53','2019-04-13 21:34:53','<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-a233397c\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":180,\"paddingTopMobile\":75,\"paddingRight\":0,\"paddingRightTablet\":40,\"paddingRightMobile\":25,\"paddingBottom\":130,\"paddingBottomTablet\":130,\"paddingBottomMobile\":75,\"paddingLeft\":0,\"paddingLeftTablet\":40,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":794,\"backgroundImageURL\":\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/flower-3415550_1920.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":35,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-a233397c\" style=\"background-image:url( \'https://test.evergreenwellness.com/wp-content/uploads/2019/04/flower-3415550_1920.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.35;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a12c5e29\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a12c5e29\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-eb91ea56\",\"tag\":\"h1\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":60,\"fontSizeMobile\":37,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"regular\",\"paddingType\":\"unlinked\",\"paddingRight\":100,\"paddingLeft\":100,\"marginBottomTablet\":35} -->\n<h1 id=\"wp-block-themeisle-blocks-advanced-heading-eb91ea56\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-eb91ea56\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:normal;font-style:normal;text-transform:none\"> We Offer better <strong>Traditional Chinese Medicine services</strong></h1>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"white\",\"fontSize\":\"huge\"} -->\n<p style=\"text-align:center\" class=\"has-text-color has-huge-font-size has-white-color\"> Acupuncture and Chinese Herbal Medicine</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-f9d0ea91\",\"align\":\"center\",\"spacing\":25,\"collapse\":\"collapse-mobile\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"Our works\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#fc5f45\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"services\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#38c695\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#00ba78\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-f9d0ea91\" class=\"wp-block-themeisle-blocks-button-group collapse-mobile\" style=\"justify-content:center;align-items:center\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>Our works</span></a><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-1\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>services</span></a></div>\n<!-- /wp:themeisle-blocks/button-group -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-f5ee0983\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":1,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":75,\"marginTopTablet\":70,\"marginTopMobile\":75,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-f5ee0983\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-0634f5f5\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"margin\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-0634f5f5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-6b2c266d\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-6b2c266d\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1569c9d6\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-1569c9d6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1569c9d6\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-25567392\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-25567392\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5c173358\",\"prefix\":\"far\",\"icon\":\"clock\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5c173358\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-clock\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-60cb5134\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-60cb5134\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-60cb5134\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-cfe17dd3\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-cfe17dd3\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-de8141d1\",\"prefix\":\"far\",\"icon\":\"grin\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-de8141d1\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-grin\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7b75c0e9\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-7b75c0e9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7b75c0e9\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-41dc917f\",\"columns\":2,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":55,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":15,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":65,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-2-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-41dc917f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b4e1cf37\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":50} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b4e1cf37\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-a8974588\",\"columns\":1,\"layout\":\"equal\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-default-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-a8974588\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f0ff3f79\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f0ff3f79\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":167,\"align\":\"center\",\"width\":630,\"height\":945} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/street-at-nigh.jpg\" alt=\"\" class=\"wp-image-167\" width=\"630\" height=\"945\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b33e98b1\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":50,\"paddingBottomTablet\":50,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"marginLeft\":-30,\"marginLeftTablet\":1,\"marginLeftMobile\":1,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":8,\"boxShadowBlur\":10,\"boxShadowHorizontal\":1,\"boxShadowVertical\":1,\"columnWidth\":50,\"className\":\"neve-about-content\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column neve-about-content\" id=\"wp-block-themeisle-blocks-advanced-column-b33e98b1\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:1px 1px 10px 0px rgba(0, 0, 0, 0.08)\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4a54260f\",\"tag\":\"div\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#ebebeb\",\"highlightColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingLeft\":20,\"marginBottom\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-4a54260f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4a54260f\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">01</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5e924f6d\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginTop\":-130,\"marginTopTablet\":-150,\"marginTopMobile\":-150} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-5e924f6d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5e924f6d\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize\">About Us.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-39b4c38f\",\"tag\":\"p\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-39b4c38f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-39b4c38f\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\"><strong>Mission Statement:</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’s health and well-being. </p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-0d71cc7d\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":1,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTop\":0,\"marginBottom\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-0d71cc7d\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6e71e700\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":100,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginBottom\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6e71e700\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cfe76d47\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-cfe76d47\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cfe76d47\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">02</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-07890798\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-110,\"marginTopTablet\":-120,\"marginTopMobile\":-140} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-07890798\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-07890798\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Focus</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1ffc73d0\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginBottom\":35} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-1ffc73d0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1ffc73d0\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-1698692e\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":25,\"paddingBottom\":0,\"paddingLeft\":25,\"margin\":0,\"marginTop\":75,\"marginTopTablet\":55,\"marginTopMobile\":35,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-1698692e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a14cc9a7\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":25,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a14cc9a7\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;box-shadow:0px 0px 25px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-4da4aac6\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"id-card\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-4da4aac6\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-id-card\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b64398aa\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-b64398aa\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b64398aa\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Web Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f4b5316f\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f4b5316f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f4b5316f\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4fbcc544\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginMobile\":30,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4fbcc544\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5370d0f0\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"map\",\"fontSize\":50,\"padding\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5370d0f0\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:5px\"><i class=\"far fa-map\" style=\"border-radius:0%;font-size:50px;padding:10px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-16ef2dc9\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-16ef2dc9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-16ef2dc9\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">UX Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-dfb9e1c7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":20,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-dfb9e1c7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-dfb9e1c7\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-d567fb70\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-d567fb70\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-677d83f5\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"camera-retro\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-677d83f5\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-camera-retro\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8710668b\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-8710668b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8710668b\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Photography</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5d175785\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5d175785\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5d175785\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-32dde0a3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-32dde0a3\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-7aafde01\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tablet-alt\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-7aafde01\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-tablet-alt\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5328ae68\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-5328ae68\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5328ae68\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">App Development</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6444d3b8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6444d3b8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6444d3b8\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-75b1c856\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":120,\"paddingTopTablet\":55,\"paddingTopMobile\":55,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":25,\"paddingBottom\":149,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-75b1c856\" style=\"background-image:url( \'https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2e204b5d\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2e204b5d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8fae9cd3\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":23,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":48,\"marginBottom\":40,\"marginBottomTablet\":40,\"marginBottomMobile\":40} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-8fae9cd3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8fae9cd3\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:48px\">Explore Our Awesomeness</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=YHhK_twfYB8\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=YHhK_twfYB8\n</div></figure>\n<!-- /wp:core-embed/youtube --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-bf0c3092\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":135,\"paddingBottomTablet\":135,\"paddingBottomMobile\":135,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-bf0c3092\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-df211136\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-df211136\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f93ea248\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-f93ea248\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f93ea248\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">03</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-68ee1eb5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-68ee1eb5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-68ee1eb5\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Our Team</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-03fb5e5e\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":20,\"paddingRightMobile\":20,\"paddingLeftTablet\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-03fb5e5e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-03fb5e5e\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-13db27a9\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":60,\"marginTopTablet\":60,\"marginTopMobile\":60,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-13db27a9\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b1fc9dc1\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b1fc9dc1\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":205,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-5.jpg\" alt=\"\" class=\"wp-image-205\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-580392a5\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-580392a5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-580392a5\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Daniele Johnson</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-672e17d3\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-672e17d3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-672e17d3\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder &amp; CEO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-8974ea4b\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-8974ea4b\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":206,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-384b3c91\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-384b3c91\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-384b3c91\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Summer Geller</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6dc03f0c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6dc03f0c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6dc03f0c\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">CTO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e6c66971\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-e6c66971\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":207,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-4.jpg\" alt=\"\" class=\"wp-image-207\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-efd1787d\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-efd1787d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-efd1787d\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Marissa Adams</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6f8d76e1\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6f8d76e1\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6f8d76e1\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Lead Developer</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-8cebfab1\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-8cebfab1\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":208,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-1.jpg\" alt=\"\" class=\"wp-image-208\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ec359203\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-ec359203\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ec359203\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Jennifer Gilmore</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d37fcee2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-d37fcee2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d37fcee2\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Marketing</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-92023939\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":150,\"paddingTopTablet\":150,\"paddingTopMobile\":150,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":120,\"paddingBottomTablet\":120,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-92023939\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5a4f67d8\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5a4f67d8\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-7cbeed40\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-line\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-7cbeed40\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-chart-line\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bcc5e082\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-bcc5e082\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bcc5e082\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">12,458+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f13e715f\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f13e715f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f13e715f\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Projects Completed</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-6dec3abf\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-6dec3abf\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3c7e20f8\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3c7e20f8\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-bd06bc6b\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"user\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-bd06bc6b\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-user\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-fbf0ddcf\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-fbf0ddcf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-fbf0ddcf\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,796+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-58d296c6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-58d296c6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-58d296c6\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Satisfied Clients</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-54c5ccc5\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-54c5ccc5\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-d6081906\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-d6081906\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-9eefcbf3\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"heart\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-9eefcbf3\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-heart\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5f0228a2\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-5f0228a2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5f0228a2\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,000+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1ce3dab3\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-1ce3dab3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1ce3dab3\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Positive Feedbacks</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-1a8ad50a\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-1a8ad50a\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c6abccad\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c6abccad\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-10cadea5\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"gift\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-10cadea5\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-gift\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-80c67d58\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-80c67d58\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-80c67d58\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,500+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-01ac27a4\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-01ac27a4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-01ac27a4\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Freebies Released</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5b67b227\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5b67b227\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-b1751f32\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":140,\"paddingBottomTablet\":140,\"paddingBottomMobile\":140,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-b1751f32\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-db9159dd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-db9159dd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-019345f8\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-019345f8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-019345f8\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">05</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6809797d\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-6809797d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6809797d\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Pricing Table</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1cc9b6a6\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":80,\"marginBottomTablet\":70} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-1cc9b6a6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1cc9b6a6\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-2028c026\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopMobile\":0,\"paddingRightMobile\":10,\"paddingBottomMobile\":0,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-2028c026\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7ef2eb56\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#38c695\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7ef2eb56\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-37adb182\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-37adb182\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-37adb182\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-493ce8c7\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-493ce8c7\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-1dc7d6b7\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#38c695\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-1dc7d6b7\" style=\"background:#38c695;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-85a0899f\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-85a0899f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-85a0899f\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e61d0678\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-e61d0678\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e61d0678\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-23ca6a82\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-23ca6a82\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-23ca6a82\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4ed96238\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4ed96238\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4ed96238\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-be134622\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-be134622\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-be134622\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-313113a4\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-313113a4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-313113a4\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-91b7d07a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-91b7d07a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-91b7d07a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8716c038\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8716c038\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8716c038\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-48e98b97\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#38c695\",\"background\":\"#ffffff\",\"border\":\"#38c695\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#38c695\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-48e98b97\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-37354d5a\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":30,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-37354d5a\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-19c97c76\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-19c97c76\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-19c97c76\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-2b1a4616\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-2b1a4616\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6ca34f80\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#fc5f45\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6ca34f80\" style=\"background:#fc5f45;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a406b299\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-a406b299\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a406b299\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9590af4b\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9590af4b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9590af4b\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2a9358b6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2a9358b6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2a9358b6\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f621fa60\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f621fa60\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f621fa60\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a82fe90d\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-a82fe90d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a82fe90d\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e899f8c8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-e899f8c8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e899f8c8\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7dc3040e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-7dc3040e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7dc3040e\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5dc1f04c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5dc1f04c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5dc1f04c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-c1242838\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#fc5f45\",\"background\":\"#ffffff\",\"border\":\"#fc5f45\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#fc5f45\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-c1242838\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fa094c60\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fa094c60\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d87d4559\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-d87d4559\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d87d4559\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-b85979b2\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-b85979b2\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b19bd59b\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#b27cf5\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b19bd59b\" style=\"background:#b27cf5;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-982c15f5\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-982c15f5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-982c15f5\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-fc7a834f\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-fc7a834f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-fc7a834f\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-97d11759\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-97d11759\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-97d11759\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8dec7b48\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8dec7b48\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8dec7b48\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4209e550\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4209e550\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4209e550\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-14e7d972\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-14e7d972\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-14e7d972\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1fb8254c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-1fb8254c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1fb8254c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8a72823d\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8a72823d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8a72823d\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-c3bae72b\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#b27cf5\",\"background\":\"#ffffff\",\"border\":\"#b27cf5\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#b27cf5\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-c3bae72b\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8a4ba17b\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8a4ba17b\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-53bd8360\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-53bd8360\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bfc973c5\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#646262\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-bfc973c5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bfc973c5\" style=\"color:#646262;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">06</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0c19d8f0\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-0c19d8f0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0c19d8f0\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Testimonials</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-16c4e426\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-16c4e426\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-16c4e426\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/testimonials -->\n<div class=\"wp-block-themeisle-blocks-testimonials\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8e78f703\",\"columns\":2,\"layout\":\"oneTwo\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":44,\"marginTopMobile\":44,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-oneTwo-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-8e78f703\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bed09e59\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"border\":10,\"borderColor\":\"#2d2e33\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bed09e59\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#2d2e33;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-b9830437\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-b9830437\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-ec91f0ef\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-ec91f0ef\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":206,\"align\":\"center\",\"width\":344,\"height\":353} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\" width=\"344\" height=\"353\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-28cd3d0a\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":25,\"paddingRight\":75,\"paddingRightTablet\":75,\"paddingRightMobile\":30,\"paddingLeft\":75,\"paddingLeftTablet\":75,\"paddingLeftMobile\":30,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-28cd3d0a\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-826df6a7\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-826df6a7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-826df6a7\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">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.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1bf1f218\",\"tag\":\"p\",\"headingColor\":\"#404248\",\"fontSize\":30,\"fontFamily\":\"Calligraffitti\",\"fontVariant\":\"normal\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-1bf1f218\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1bf1f218\" style=\"color:#404248;font-family:Calligraffitti;font-weight:normal;font-style:normal;text-transform:none\">Melina</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-09c771d9\",\"tag\":\"h6\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-09c771d9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-09c771d9\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Melina Albrecht</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-424ed77d\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-424ed77d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-424ed77d\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder, TingTong</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/testimonials --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-b99f972e\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-b99f972e\" style=\"background:#ffffff;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-242fdb84\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-242fdb84\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-64bdc834\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-64bdc834\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-64bdc834\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">07</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-016de10f\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-016de10f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-016de10f\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Why select us?</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e329e398\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":75} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-e329e398\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e329e398\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-9207f2e9\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-9207f2e9\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bdb27f4a\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bdb27f4a\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-3a913490\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-bar\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-3a913490\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-chart-bar\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7814e310\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-7814e310\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7814e310\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Business Growth</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bfb392d5\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-bfb392d5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bfb392d5\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e5462864\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-e5462864\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-88cdcef4\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-88cdcef4\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5b15701d\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-5b15701d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5b15701d\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Unlimited Revisions</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c7e98bac\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c7e98bac\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c7e98bac\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-dacf9205\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-dacf9205\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-a407eefe\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"directions\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-a407eefe\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-directions\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cf44dc70\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-cf44dc70\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cf44dc70\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Ultimate Perfection</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6ccb4aae\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6ccb4aae\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6ccb4aae\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-da3c9d77\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-da3c9d77\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3664d6eb\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3664d6eb\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-fa529d60\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tv\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-fa529d60\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-tv\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f25fa1ad\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-f25fa1ad\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f25fa1ad\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Smart Experience</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6eb51a24\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6eb51a24\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6eb51a24\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-313bb387\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-313bb387\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-56800738\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"calendar-plus\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-56800738\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-calendar-plus\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-340de3d6\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-340de3d6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-340de3d6\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Strict Deadline</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-37d08ecf\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-37d08ecf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-37d08ecf\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4aac2429\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4aac2429\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-191fa5f0\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"medal\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-191fa5f0\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-medal\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-709f893f\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-709f893f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-709f893f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Reputed Company</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-252909ff\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-252909ff\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-252909ff\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-4c67857c\",\"columns\":2,\"layout\":\"twoOne\",\"layoutTablet\":\"twoOne\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":150,\"marginTopTablet\":75,\"marginTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-twoOne-layout has-tablet-twoOne-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-4c67857c\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e0fc6a38\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-e0fc6a38\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-97fa65ca\",\"tag\":\"h4\",\"align\":\"right\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":25,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":40,\"paddingTypeMobile\":\"unlinked\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-97fa65ca\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-97fa65ca\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:40px\">Start your journey with us now</h4>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-af86d13a\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-af86d13a\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-45a41c21\",\"buttons\":1,\"align\":\"flex-start\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"get started\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#f64a2d\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-45a41c21\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:flex-start;align-items:flex-start\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-a885253c\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":60,\"paddingBottomMobile\":60,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-a885253c\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c90be786\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c90be786\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-fde98876\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-fde98876\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-fde98876\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">08</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-53b6116c\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-53b6116c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-53b6116c\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Blog</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ebd37263\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-ebd37263\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ebd37263\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-ca61269d\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-ca61269d\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-426d1dc8\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopMobile\":0,\"paddingBottomMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-426d1dc8\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/posts-grid {\"grid\":true,\"postsToShow\":3,\"displayCategory\":false,\"displayDate\":false,\"displayAuthor\":false,\"className\":\"neve-our-blog\"} /--></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-43793b66\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-43793b66\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-cf518dd7\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-cf518dd7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5b6529db\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#636060\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-5b6529db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5b6529db\" style=\"color:#636060;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">09</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-02cdf979\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-02cdf979\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-02cdf979\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Get in Touch</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4ceb5d22\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-4ceb5d22\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4ceb5d22\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\"> Allow people to reach you directly through your site: </div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-a895301b\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":820,\"horizontalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-a895301b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:820px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-ac834860\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-ac834860\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:shortcode -->\n[wpforms id=\"649\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-0e862dd1\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"align\":\"wide\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignwide has-4-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-0e862dd1\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4ecd5a3f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4ecd5a3f\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-aac59eaf\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-aac59eaf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-aac59eaf\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Here for you</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f550ff9e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f550ff9e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f550ff9e\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Call us 24/7. We are there for your support.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-ffe7431d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-ffe7431d\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9a61f786\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-9a61f786\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9a61f786\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">About Neve</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3fe1b431\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3fe1b431\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3fe1b431\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Res enim fortasse verae, certe graves.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-1d3368e2\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-1d3368e2\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-43420648\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-43420648\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-43420648\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Where to find us</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-300d7166\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-300d7166\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-300d7166\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">42 Boulevard, California, number 23</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3bc531a1\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3bc531a1\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2a498565\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-2a498565\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2a498565\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Keep in touch</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/sharing-icons {\"align\":\"center\",\"className\":\"is-style-icons\"} /--></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->','Home','','inherit','closed','closed','','783-autosave-v1','','','2019-04-13 21:34:53','2019-04-13 21:34:53','',783,'https://test.evergreenwellness.com/2019/04/13/783-autosave-v1/',0,'revision','',0),(789,1,'2019-04-13 19:26:18','2019-04-13 19:26:18','<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-051b510c\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":180,\"paddingTopTablet\":180,\"paddingTopMobile\":75,\"paddingRight\":0,\"paddingRightTablet\":40,\"paddingRightMobile\":25,\"paddingBottom\":130,\"paddingBottomTablet\":130,\"paddingBottomMobile\":75,\"paddingLeft\":0,\"paddingLeftTablet\":40,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-051b510c\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-811d2b47\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-811d2b47\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-37e9df03\",\"tag\":\"h1\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":60,\"fontSizeMobile\":37,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"regular\",\"paddingType\":\"unlinked\",\"paddingRight\":100,\"paddingLeft\":100,\"marginBottomTablet\":35} -->\n<h1 id=\"wp-block-themeisle-blocks-advanced-heading-37e9df03\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-37e9df03\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:normal;font-style:normal;text-transform:none\"> Super Fast, Featherweight Theme to Enter the Gutenberg Era </h1>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-9d0faa1a\",\"align\":\"center\",\"spacing\":25,\"collapse\":\"collapse-mobile\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"Our works\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#fc5f45\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"services\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#38c695\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#00ba78\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-9d0faa1a\" class=\"wp-block-themeisle-blocks-button-group collapse-mobile\" style=\"justify-content:center;align-items:center\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>Our works</span></a><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-1\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>services</span></a></div>\n<!-- /wp:themeisle-blocks/button-group -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-1cde2655\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":1,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":75,\"marginTopTablet\":70,\"marginTopMobile\":75,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-1cde2655\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7725c11d\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"margin\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7725c11d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-461bf847\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-461bf847\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-461bf847\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-58824158\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-58824158\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"far\",\"icon\":\"clock\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-clock\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-896a3b02\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-896a3b02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-896a3b02\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-d8879ddd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-d8879ddd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"prefix\":\"far\",\"icon\":\"grin\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-grin\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1bc4b2e7\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c5d62f7a\",\"columns\":2,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":55,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":15,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":65,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-2-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-c5d62f7a\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-924c707d\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-924c707d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-2a2dd848\",\"columns\":1,\"layout\":\"equal\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-default-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-2a2dd848\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b8186aa5\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b8186aa5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":167,\"align\":\"center\",\"width\":630,\"height\":945} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/street-at-nigh.jpg\" alt=\"\" class=\"wp-image-167\" width=\"630\" height=\"945\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3b7607a4\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":50,\"paddingBottomTablet\":50,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"marginLeft\":-30,\"marginLeftTablet\":1,\"marginLeftMobile\":1,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":8,\"boxShadowBlur\":10,\"boxShadowHorizontal\":1,\"boxShadowVertical\":1,\"className\":\"neve-about-content\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column neve-about-content\" id=\"wp-block-themeisle-blocks-advanced-column-3b7607a4\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:1px 1px 10px 0px rgba(0, 0, 0, 0.08)\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d78669db\",\"tag\":\"div\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#ebebeb\",\"highlightColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingLeft\":20,\"marginBottom\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-d78669db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d78669db\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">01</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c4eedf47\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginTop\":-130,\"marginTopTablet\":-150,\"marginTopMobile\":-150} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-c4eedf47\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c4eedf47\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize\">About Us.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7e30255e\",\"tag\":\"p\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-7e30255e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7e30255e\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">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.&nbsp;<br><br>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-83937a97\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":1,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTop\":0,\"marginBottom\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-83937a97\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b99f62be\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":100,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginBottom\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b99f62be\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-535b8e02\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-535b8e02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-535b8e02\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">02</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-764e2b43\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-110,\"marginTopTablet\":-120,\"marginTopMobile\":-140} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-764e2b43\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-764e2b43\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Focus</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-57541825\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginBottom\":35} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-57541825\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-57541825\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-56760ed4\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":25,\"paddingBottom\":0,\"paddingLeft\":25,\"margin\":0,\"marginTop\":75,\"marginTopTablet\":55,\"marginTopMobile\":35,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-56760ed4\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7c36ed5c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7c36ed5c\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;box-shadow:0px 0px 25px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"id-card\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-id-card\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d36bb1f6\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-d36bb1f6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d36bb1f6\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Web Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-937cc106\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-937cc106\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-937cc106\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6e6e0694\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginMobile\":30,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6e6e0694\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"map\",\"fontSize\":50,\"padding\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:5px\"><i class=\"far fa-map\" style=\"border-radius:0%;font-size:50px;padding:10px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-18841a83\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-18841a83\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-18841a83\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">UX Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-509f63cd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":20,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-509f63cd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-509f63cd\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7bc5a157\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7bc5a157\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"camera-retro\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-camera-retro\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7e126df0\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-7e126df0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7e126df0\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Photography</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b1f83419\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b1f83419\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b1f83419\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5b31cfe3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5b31cfe3\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tablet-alt\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-tablet-alt\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-64d74eaf\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-64d74eaf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-64d74eaf\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">App Development</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-48633dbc\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-48633dbc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-48633dbc\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-75ad5ae2\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":120,\"paddingTopTablet\":55,\"paddingTopMobile\":55,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":25,\"paddingBottom\":149,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-75ad5ae2\" style=\"background-image:url( \'https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-89b8c01a\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-89b8c01a\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e2da970a\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":23,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":48,\"marginBottom\":40,\"marginBottomTablet\":40,\"marginBottomMobile\":40} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e2da970a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e2da970a\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:48px\">Explore Our Awesomeness</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=YHhK_twfYB8\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=YHhK_twfYB8\n</div></figure>\n<!-- /wp:core-embed/youtube --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-60162bcb\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":135,\"paddingBottomTablet\":135,\"paddingBottomMobile\":135,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-60162bcb\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-983ff765\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-983ff765\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a0624810\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a0624810\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a0624810\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">03</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7ac7a90e\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-7ac7a90e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7ac7a90e\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Our Team</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a8294614\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":20,\"paddingRightMobile\":20,\"paddingLeftTablet\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a8294614\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a8294614\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-ec121619\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":60,\"marginTopTablet\":60,\"marginTopMobile\":60,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-ec121619\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-11be02b7\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-11be02b7\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":205,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-5.jpg\" alt=\"\" class=\"wp-image-205\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ade6534f\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-ade6534f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ade6534f\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Daniele Johnson</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-41452188\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-41452188\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-41452188\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder &amp; CEO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c6631aef\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c6631aef\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":206,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0c58b78a\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-0c58b78a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0c58b78a\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Summer Geller</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-99f9a4e7\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-99f9a4e7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-99f9a4e7\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">CTO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a1d8f6f3\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a1d8f6f3\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":207,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-4.jpg\" alt=\"\" class=\"wp-image-207\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-77ab0453\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-77ab0453\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-77ab0453\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Marissa Adams</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-dde6199a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-dde6199a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-dde6199a\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Lead Developer</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-be6fc09c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-be6fc09c\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":208,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-1.jpg\" alt=\"\" class=\"wp-image-208\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3e1ca92b\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-3e1ca92b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3e1ca92b\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Jennifer Gilmore</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5591f549\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5591f549\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5591f549\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Marketing</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-e42951ed\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":150,\"paddingTopTablet\":150,\"paddingTopMobile\":150,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":120,\"paddingBottomTablet\":120,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-e42951ed\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-89d72d97\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-89d72d97\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-line\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-chart-line\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-05557d66\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-05557d66\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-05557d66\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">12,458+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2f43dd02\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2f43dd02\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2f43dd02\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Projects Completed</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fd5aeed4\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fd5aeed4\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"user\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-user\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cf709e32\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-cf709e32\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cf709e32\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,796+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-70f5057c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-70f5057c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-70f5057c\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Satisfied Clients</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3af1e4ed\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3af1e4ed\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"heart\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-heart\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e3f90df1\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-e3f90df1\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e3f90df1\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,000+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-e0e8c109\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-e0e8c109\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-e0e8c109\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Positive Feedbacks</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-40e35921\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-40e35921\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"gift\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-gift\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-961bdc52\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-961bdc52\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-961bdc52\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,500+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d691eae3\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-d691eae3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d691eae3\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Freebies Released</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d1146f5a\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":140,\"paddingBottomTablet\":140,\"paddingBottomMobile\":140,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d1146f5a\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-87b2b8d0\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-87b2b8d0\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c71363e0\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c71363e0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c71363e0\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">05</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6e9a082c\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-6e9a082c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6e9a082c\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Pricing Table</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-dc1bb971\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":80,\"marginBottomTablet\":70} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-dc1bb971\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-dc1bb971\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c20ce622\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopMobile\":0,\"paddingRightMobile\":10,\"paddingBottomMobile\":0,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-c20ce622\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-57d4f7f6\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-57d4f7f6\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0c47cca5\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-0c47cca5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0c47cca5\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d948d670\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d948d670\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-93ca6a3a\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#38c695\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-93ca6a3a\" style=\"background:#38c695;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a2dd543e\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-a2dd543e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a2dd543e\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-970db141\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-970db141\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-970db141\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2a5b2dac\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2a5b2dac\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2a5b2dac\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-51ab00eb\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-51ab00eb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-51ab00eb\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-722926b8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-722926b8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-722926b8\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b8664623\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b8664623\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b8664623\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-585c838a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-585c838a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-585c838a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-89b7b3d2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-89b7b3d2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-89b7b3d2\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-0d75d80b\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#38c695\",\"background\":\"#ffffff\",\"border\":\"#38c695\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#38c695\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-0d75d80b\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f6f1d5d6\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":30,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f6f1d5d6\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5853cf71\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-5853cf71\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5853cf71\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-1d2b9761\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-1d2b9761\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-624a4fde\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#fc5f45\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-624a4fde\" style=\"background:#fc5f45;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5ef1b07c\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-5ef1b07c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5ef1b07c\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9d452731\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9d452731\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9d452731\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6a3e554c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6a3e554c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6a3e554c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5e8d726b\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5e8d726b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5e8d726b\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8c221010\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8c221010\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8c221010\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-199dd0e4\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-199dd0e4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-199dd0e4\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5d9a937c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5d9a937c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5d9a937c\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9712b71e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9712b71e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9712b71e\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-0ffd0787\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#fc5f45\",\"background\":\"#ffffff\",\"border\":\"#fc5f45\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#fc5f45\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-0ffd0787\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-e8ad3c60\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#b27cf5\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-e8ad3c60\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ea193397\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-ea193397\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ea193397\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-78d65b71\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-78d65b71\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3543aa4b\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#b27cf5\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3543aa4b\" style=\"background:#b27cf5;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-66d643a2\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-66d643a2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-66d643a2\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-503377e8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-503377e8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-503377e8\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6b750556\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6b750556\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6b750556\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-47ae4cb0\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-47ae4cb0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-47ae4cb0\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4084ab38\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4084ab38\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4084ab38\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6ecc9d12\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-6ecc9d12\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6ecc9d12\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3fe4beb8\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3fe4beb8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3fe4beb8\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9527d6dc\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-9527d6dc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9527d6dc\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-2f982dcd\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#b27cf5\",\"background\":\"#ffffff\",\"border\":\"#b27cf5\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#b27cf5\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-2f982dcd\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c752778a\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-c752778a\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-86058bf5\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-86058bf5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9aa56be9\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#646262\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-9aa56be9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9aa56be9\" style=\"color:#646262;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">06</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d5c44949\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-d5c44949\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d5c44949\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Testimonials</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-119e94ec\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-119e94ec\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-119e94ec\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/testimonials -->\n<div class=\"wp-block-themeisle-blocks-testimonials\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-00baae56\",\"columns\":2,\"layout\":\"oneTwo\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":44,\"marginTopMobile\":44,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-oneTwo-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-00baae56\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6b02c72d\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"border\":10,\"borderColor\":\"#2d2e33\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6b02c72d\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#2d2e33;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-7d8f1448\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-7d8f1448\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-db57b876\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-db57b876\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":206,\"align\":\"center\",\"width\":344,\"height\":353} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\" width=\"344\" height=\"353\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7656b6aa\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":25,\"paddingRight\":75,\"paddingRightTablet\":75,\"paddingRightMobile\":30,\"paddingLeft\":75,\"paddingLeftTablet\":75,\"paddingLeftMobile\":30,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7656b6aa\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bf558675\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-bf558675\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bf558675\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">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.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f4954979\",\"tag\":\"p\",\"headingColor\":\"#404248\",\"fontSize\":30,\"fontFamily\":\"Calligraffitti\",\"fontVariant\":\"normal\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f4954979\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f4954979\" style=\"color:#404248;font-family:Calligraffitti;font-weight:normal;font-style:normal;text-transform:none\">Melina</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3dd1b73f\",\"tag\":\"h6\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-3dd1b73f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3dd1b73f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Melina Albrecht</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-61677d52\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-61677d52\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-61677d52\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder, TingTong</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/testimonials --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-cc5ca388\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-cc5ca388\" style=\"background:#ffffff;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2e553386\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2e553386\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-05db3788\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-05db3788\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-05db3788\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">07</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-17f8a94b\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-17f8a94b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-17f8a94b\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Why select us?</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ffd1b776\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":75} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-ffd1b776\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ffd1b776\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-caf70872\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-caf70872\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7bf6e60d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7bf6e60d\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-bar\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-chart-bar\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-af24cbdb\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-af24cbdb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-af24cbdb\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Business Growth</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cfe80c33\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-cfe80c33\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cfe80c33\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4725031c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4725031c\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c40e105f\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c40e105f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c40e105f\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Unlimited Revisions</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2c9d4774\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2c9d4774\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2c9d4774\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3edf80c2\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3edf80c2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"directions\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#b27cf5;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-directions\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-45d3c397\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-45d3c397\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-45d3c397\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Ultimate Perfection</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-995b1073\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-995b1073\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-995b1073\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-3102332e\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-3102332e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-625bc1c1\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-625bc1c1\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tv\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#feb960;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-tv\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3c60af5e\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-3c60af5e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3c60af5e\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Smart Experience</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-829898f1\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-829898f1\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-829898f1\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fee2f813\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fee2f813\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"calendar-plus\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#fc5f45;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-calendar-plus\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-87762615\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-87762615\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-87762615\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Strict Deadline</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4d824dc7\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4d824dc7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4d824dc7\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-00e69db8\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-00e69db8\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"medal\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" style=\"text-align:center\"><span class=\"undefined-container\" style=\"color:#38c695;border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-medal\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b1f94b54\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-b1f94b54\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b1f94b54\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Reputed Company</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f15118c9\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f15118c9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f15118c9\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-9a716556\",\"columns\":2,\"layout\":\"twoOne\",\"layoutTablet\":\"twoOne\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":150,\"marginTopTablet\":75,\"marginTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-twoOne-layout has-tablet-twoOne-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-9a716556\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5fe29b29\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5fe29b29\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4c186c06\",\"tag\":\"h4\",\"align\":\"right\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":25,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":40,\"paddingTypeMobile\":\"unlinked\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-4c186c06\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4c186c06\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:40px\">Start your journey with us now</h4>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-1049ab5e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-1049ab5e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-1b7b62d5\",\"buttons\":1,\"align\":\"flex-start\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"get started\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#f64a2d\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-1b7b62d5\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:flex-start;align-items:flex-start\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-45046f4b\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":60,\"paddingBottomMobile\":60,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-45046f4b\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4e9bc4c2\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4e9bc4c2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-809fd590\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-809fd590\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-809fd590\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">08</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8cc7130d\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-8cc7130d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8cc7130d\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Blog</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6a6fe024\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-6a6fe024\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6a6fe024\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-fd27d629\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-fd27d629\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3c744452\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopMobile\":0,\"paddingBottomMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3c744452\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/posts-grid {\"grid\":true,\"postsToShow\":3,\"displayCategory\":false,\"displayDate\":false,\"displayAuthor\":false,\"className\":\"neve-our-blog\"} /--></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-7dcc72ab\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-7dcc72ab\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c01b520e\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c01b520e\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-92813c4a\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#636060\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-92813c4a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-92813c4a\" style=\"color:#636060;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">09</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-79c32044\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-79c32044\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-79c32044\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Get in Touch</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a997086d\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a997086d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a997086d\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\"> Allow people to reach you directly through your site: </div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-aab8a6ec\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":820,\"horizontalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-aab8a6ec\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\" style=\"max-width:820px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6d8d4b8b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6d8d4b8b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:shortcode -->\n[wpforms id=\"649\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d6a4de7f\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"align\":\"wide\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignwide has-4-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d6a4de7f\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal;filter:blur( 0px ) brightness( 1 ) contrast( 1 ) grayscale( 0 ) hue-rotate( 0deg ) saturate( 1 )\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2c9e5897\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2c9e5897\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2af12af5\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-2af12af5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2af12af5\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Here for you</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ed5ff52c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ed5ff52c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ed5ff52c\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Call us 24/7. We are there for your support.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2569c731\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2569c731\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6f50790e\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-6f50790e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6f50790e\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">About Neve</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-999115b2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-999115b2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-999115b2\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Res enim fortasse verae, certe graves.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5bc9af88\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5bc9af88\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c9bd3583\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-c9bd3583\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c9bd3583\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Where to find us</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0efc5eea\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-0efc5eea\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0efc5eea\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">42 Boulevard, California, number 23</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7d879b81\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7d879b81\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-01eb1246\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-01eb1246\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-01eb1246\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Keep in touch</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/sharing-icons {\"align\":\"center\",\"className\":\"is-style-icons\"} /--></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->','Home','','inherit','closed','closed','','783-revision-v1','','','2019-04-13 19:26:18','2019-04-13 19:26:18','',783,'https://test.evergreenwellness.com/2019/04/13/783-revision-v1/',0,'revision','',0),(791,1,'2019-04-13 19:48:03','2019-04-13 19:48:03','','pink-2254970_1920','','inherit','open','closed','','pink-2254970_1920','','','2019-04-13 19:48:03','2019-04-13 19:48:03','',783,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp9z_posts` VALUES (792,1,'2019-04-13 19:48:28','2019-04-13 19:48:28','<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-d2a46762\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":180,\"paddingTopMobile\":75,\"paddingRight\":0,\"paddingRightTablet\":40,\"paddingRightMobile\":25,\"paddingBottom\":130,\"paddingBottomTablet\":130,\"paddingBottomMobile\":75,\"paddingLeft\":0,\"paddingLeftTablet\":40,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":791,\"backgroundImageURL\":\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":42,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-d2a46762\" style=\"background-image:url( \'https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.42;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c52ca5b7\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c52ca5b7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b04ddc9c\",\"tag\":\"h1\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":60,\"fontSizeMobile\":37,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"regular\",\"paddingType\":\"unlinked\",\"paddingRight\":100,\"paddingLeft\":100,\"marginBottomTablet\":35} -->\n<h1 id=\"wp-block-themeisle-blocks-advanced-heading-b04ddc9c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b04ddc9c\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:normal;font-style:normal;text-transform:none\"> We Offer better <strong>Traditional Chinese Medicine services</strong></h1>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"white\",\"fontSize\":\"huge\"} -->\n<p style=\"text-align:center\" class=\"has-text-color has-huge-font-size has-white-color\"> Acupuncture and Chinese Herbal Medicine</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-967d7317\",\"align\":\"center\",\"spacing\":25,\"collapse\":\"collapse-mobile\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"Our works\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#fc5f45\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"services\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#38c695\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#00ba78\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-967d7317\" class=\"wp-block-themeisle-blocks-button-group collapse-mobile\" style=\"justify-content:center;align-items:center\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>Our works</span></a><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-1\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>services</span></a></div>\n<!-- /wp:themeisle-blocks/button-group -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-4fdd0e11\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":1,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":75,\"marginTopTablet\":70,\"marginTopMobile\":75,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-4fdd0e11\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-081707fe\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"margin\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-081707fe\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-ac0aa974\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-ac0aa974\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bd8284dc\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-bd8284dc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bd8284dc\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3feebc5f\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3feebc5f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-6f5431bd\",\"prefix\":\"far\",\"icon\":\"clock\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-6f5431bd\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-clock\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6c187ffc\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-6c187ffc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6c187ffc\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-ad0a0ab4\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":45,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-ad0a0ab4\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-d98e10d8\",\"prefix\":\"far\",\"icon\":\"grin\",\"fontSize\":45,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-d98e10d8\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-grin\" style=\"border-radius:0%;font-size:45px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-30097e69\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":26,\"marginTop\":8,\"marginTopTablet\":8,\"marginTopMobile\":8,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-30097e69\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-30097e69\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:26px\">fixed price projects</h3>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-057e0094\",\"columns\":2,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":150,\"paddingTopTablet\":55,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":15,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":65,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-2-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-057e0094\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4fdb4d53\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":50} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4fdb4d53\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-b8acc448\",\"columns\":1,\"layout\":\"equal\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-default-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-b8acc448\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fc1c3cbd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fc1c3cbd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":167,\"align\":\"center\",\"width\":630,\"height\":945} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/street-at-nigh.jpg\" alt=\"\" class=\"wp-image-167\" width=\"630\" height=\"945\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-41d67b34\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":50,\"paddingBottomTablet\":50,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"marginLeft\":-30,\"marginLeftTablet\":1,\"marginLeftMobile\":1,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":8,\"boxShadowBlur\":10,\"boxShadowHorizontal\":1,\"boxShadowVertical\":1,\"columnWidth\":50,\"className\":\"neve-about-content\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column neve-about-content\" id=\"wp-block-themeisle-blocks-advanced-column-41d67b34\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:1px 1px 10px 0px rgba(0, 0, 0, 0.08)\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9d018a3b\",\"tag\":\"div\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#ebebeb\",\"highlightColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingLeft\":20,\"marginBottom\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-9d018a3b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9d018a3b\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">01</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-574558aa\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginTop\":-130,\"marginTopTablet\":-150,\"marginTopMobile\":-150} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-574558aa\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-574558aa\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize\">About Us.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d1cf0a95\",\"tag\":\"p\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":70,\"paddingRightTablet\":82,\"paddingRightMobile\":30,\"paddingLeft\":82,\"paddingLeftTablet\":82,\"paddingLeftMobile\":30,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-d1cf0a95\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d1cf0a95\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">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.&nbsp;<br><br>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-85be48ad\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":1,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":0,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTop\":0,\"marginBottom\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-85be48ad\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-8e87fc53\",\"paddingType\":\"unlinked\",\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":0,\"paddingBottom\":100,\"paddingLeft\":0,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginBottom\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-8e87fc53\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0bf79da7\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-0bf79da7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0bf79da7\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">02</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-47585392\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-110,\"marginTopTablet\":-120,\"marginTopMobile\":-140} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-47585392\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-47585392\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Focus</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-25686158\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginBottom\":35} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-25686158\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-25686158\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-509851cf\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingRight\":25,\"paddingBottom\":0,\"paddingLeft\":25,\"margin\":0,\"marginTop\":75,\"marginTopTablet\":55,\"marginTopMobile\":35,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-509851cf\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-6decce3d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":25,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-6decce3d\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;box-shadow:0px 0px 25px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-d786e281\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"id-card\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-d786e281\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-id-card\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b23003ab\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-b23003ab\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b23003ab\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Web Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-590a389c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-590a389c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-590a389c\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-2775fa60\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginMobile\":30,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-2775fa60\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-cf47f2d8\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"map\",\"fontSize\":50,\"padding\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-cf47f2d8\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:5px\"><i class=\"far fa-map\" style=\"border-radius:0%;font-size:50px;padding:10px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-481de26c\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-481de26c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-481de26c\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">UX Design</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-94875710\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":20,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-94875710\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-94875710\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-9cafd995\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-9cafd995\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-b5b63ed9\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"camera-retro\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-b5b63ed9\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-camera-retro\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5570ff19\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-5570ff19\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5570ff19\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Photography</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5c3574d0\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"paddingType\":\"unlinked\",\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5c3574d0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5c3574d0\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-d02388d5\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":60,\"paddingTopTablet\":40,\"paddingTopMobile\":40,\"paddingRight\":25,\"paddingBottom\":53,\"paddingBottomTablet\":33,\"paddingLeft\":25,\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"boxShadow\":true,\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-d02388d5\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-1589ac85\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tablet-alt\",\"fontSize\":50,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-1589ac85\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-tablet-alt\" style=\"border-radius:0%;font-size:50px;padding:5px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-22804c67\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-22804c67\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-22804c67\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">App Development</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4cd613bd\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4cd613bd\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4cd613bd\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Analytics release series A financing launch party interaction design android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-bb055509\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":120,\"paddingTopTablet\":55,\"paddingTopMobile\":55,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":25,\"paddingBottom\":149,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":25,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-bb055509\" style=\"background-image:url( \'https://github.com/Codeinwp/gutenberg-templates/blob/master/assets/images/path.jpg?raw=true\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-7ad8d02b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-7ad8d02b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-08e5104b\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":23,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":48,\"marginBottom\":40,\"marginBottomTablet\":40,\"marginBottomMobile\":40} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-08e5104b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-08e5104b\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:48px\">Explore Our Awesomeness</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=YHhK_twfYB8\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=YHhK_twfYB8\n</div></figure>\n<!-- /wp:core-embed/youtube --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-7e7c6ced\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":135,\"paddingBottomTablet\":135,\"paddingBottomMobile\":135,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-7e7c6ced\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5208f77f\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5208f77f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-458a31e1\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-458a31e1\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-458a31e1\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">03</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-eb297c3b\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-eb297c3b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-eb297c3b\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Our Team</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ad0ca779\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":20,\"paddingRightMobile\":20,\"paddingLeftTablet\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-ad0ca779\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ad0ca779\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-0d7805d7\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":60,\"marginTopTablet\":60,\"marginTopMobile\":60,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-0d7805d7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-74ae8e95\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-74ae8e95\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":205,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-5.jpg\" alt=\"\" class=\"wp-image-205\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a65198bf\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-a65198bf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a65198bf\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Daniele Johnson</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ead4d667\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ead4d667\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ead4d667\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder &amp; CEO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-fa01d6cc\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#38c695\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-fa01d6cc\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":206,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-00f394d7\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-00f394d7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-00f394d7\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Summer Geller</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b80632ef\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b80632ef\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b80632ef\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">CTO</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-0d33b3ad\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-0d33b3ad\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":207,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-4.jpg\" alt=\"\" class=\"wp-image-207\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a666d974\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-a666d974\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a666d974\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Marissa Adams</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-eb985421\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-eb985421\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-eb985421\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Lead Developer</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bd70135c\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":5,\"paddingTopTablet\":5,\"paddingTopMobile\":5,\"paddingRight\":5,\"paddingRightTablet\":5,\"paddingRightMobile\":5,\"paddingBottom\":15,\"paddingBottomTablet\":15,\"paddingBottomMobile\":15,\"paddingLeft\":5,\"paddingLeftTablet\":5,\"paddingLeftMobile\":5,\"marginTablet\":15,\"marginMobile\":15,\"marginTop\":0,\"marginTopTablet\":15,\"marginTopMobile\":15,\"marginBottom\":0,\"marginBottomTablet\":15,\"marginBottomMobile\":15,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bd70135c\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:image {\"id\":208,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-1.jpg\" alt=\"\" class=\"wp-image-208\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7f5e17d8\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-7f5e17d8\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7f5e17d8\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Jennifer Gilmore</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f3313ba3\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#7a7a7a\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f3313ba3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f3313ba3\" style=\"color:#7a7a7a;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Marketing</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-8dc052d1\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"twoColumnGrid\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":150,\"paddingTopTablet\":150,\"paddingTopMobile\":150,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":120,\"paddingBottomTablet\":120,\"paddingBottomMobile\":50,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"boxShadowColorOpacity\":5,\"boxShadowBlur\":10,\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-4-columns has-desktop-equal-layout has-tablet-twoColumnGrid-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-8dc052d1\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-66da8afd\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-66da8afd\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-56e4e8e9\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-line\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-56e4e8e9\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-chart-line\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-313873e0\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-313873e0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-313873e0\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">12,458+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-54378011\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-54378011\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-54378011\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Projects Completed</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-7732c34d\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-7732c34d\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-228fd581\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-228fd581\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-6a726aad\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"user\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-6a726aad\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-user\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2099b4b4\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-2099b4b4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2099b4b4\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,796+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-16607cfc\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-16607cfc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-16607cfc\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Satisfied Clients</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-7b34786f\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-7b34786f\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-cd76c89f\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-cd76c89f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-3adb0c4a\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"heart\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-3adb0c4a\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"far fa-heart\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7b9266e4\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-7b9266e4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7b9266e4\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,000+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-815976a0\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-815976a0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-815976a0\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Positive Feedbacks</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5b848b1e\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5b848b1e\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-97927626\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottomTablet\":50,\"marginBottomMobile\":90,\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-97927626\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5a40e701\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"gift\",\"fontSize\":50,\"padding\":0,\"margin\":10,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5a40e701\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:10px\"><i class=\"fas fa-gift\" style=\"border-radius:0%;font-size:50px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3df7dc2f\",\"tag\":\"h3\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":15,\"marginBottomTablet\":15,\"marginBottomMobile\":15} -->\n<h3 id=\"wp-block-themeisle-blocks-advanced-heading-3df7dc2f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3df7dc2f\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">1,500+</h3>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-677b38ed\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#dadbdb\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-677b38ed\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-677b38ed\" style=\"color:#dadbdb;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Freebies Released</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-9aac9f9b\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"dot-circle\",\"fontSize\":20,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-9aac9f9b\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-dot-circle\" style=\"border-radius:0%;font-size:20px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-5748683e\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":140,\"paddingBottomTablet\":140,\"paddingBottomMobile\":140,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-5748683e\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b7028e65\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b7028e65\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f4377fda\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-f4377fda\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f4377fda\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">05</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0d3985a4\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-0d3985a4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0d3985a4\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Pricing Table</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-56fb7f96\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":80,\"marginBottomTablet\":70} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-56fb7f96\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-56fb7f96\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-fd5fca13\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopMobile\":0,\"paddingRightMobile\":10,\"paddingBottomMobile\":0,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-fd5fca13\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4aa6334b\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#38c695\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4aa6334b\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1f499ea0\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-1f499ea0\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1f499ea0\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-60078fde\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-60078fde\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-cbe30ab7\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#38c695\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-cbe30ab7\" style=\"background:#38c695;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ba3f81e3\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-ba3f81e3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ba3f81e3\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-61f5c613\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-61f5c613\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-61f5c613\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f9cb68c9\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f9cb68c9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f9cb68c9\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b4ed38db\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b4ed38db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b4ed38db\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-bf336881\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-bf336881\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-bf336881\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-8127c270\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-8127c270\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-8127c270\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0bc4dd64\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-0bc4dd64\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0bc4dd64\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-615b25f2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-615b25f2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-615b25f2\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-9b6b5e6a\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#38c695\",\"background\":\"#ffffff\",\"border\":\"#38c695\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#38c695\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-9b6b5e6a\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-1224cc08\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":30,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":50,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#fc5f45\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-1224cc08\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-24047638\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-24047638\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-24047638\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-e79ab2f5\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-e79ab2f5\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-b5309f22\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#fc5f45\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-b5309f22\" style=\"background:#fc5f45;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3ecc3a5d\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-3ecc3a5d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3ecc3a5d\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d724956b\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-d724956b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d724956b\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2394886e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2394886e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2394886e\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-43723a2a\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-43723a2a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-43723a2a\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2087c2c5\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2087c2c5\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2087c2c5\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5a849ee2\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5a849ee2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5a849ee2\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-00983499\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-00983499\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-00983499\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4d561724\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4d561724\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4d561724\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-4467c2d3\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#fc5f45\",\"background\":\"#ffffff\",\"border\":\"#fc5f45\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#fc5f45\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-4467c2d3\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3e507b25\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":30,\"paddingTablet\":30,\"paddingMobile\":0,\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":40,\"paddingBottomTablet\":40,\"paddingBottomMobile\":40,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderTop\":3,\"borderColor\":\"#b27cf5\",\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3e507b25\" style=\"background:#ffffff;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#b27cf5;border-radius:0px\"><!-- wp:themeisle-blocks/pricing -->\n<div class=\"wp-block-themeisle-blocks-pricing\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b81e2914\",\"tag\":\"h5\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":20,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":33,\"paddingType\":\"unlinked\",\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<h5 id=\"wp-block-themeisle-blocks-advanced-heading-b81e2914\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b81e2914\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:33px\">Starter</h5>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-dd9bd403\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":30,\"marginBottomTablet\":30,\"marginBottomMobile\":30,\"horizontalAlign\":\"center\",\"borderColor\":\"#38c695\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-dd9bd403\" style=\"border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-54cfc388\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":27,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":25,\"paddingBottomTablet\":25,\"paddingBottomMobile\":27,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"backgroundColor\":\"#b27cf5\",\"borderColor\":\"#38c695\",\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-54cfc388\" style=\"background:#b27cf5;border-width:0px;border-style:solid;border-color:#38c695;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-db656eec\",\"tag\":\"h4\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-db656eec\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-db656eec\" style=\"color:#ffffff;font-style:normal;text-transform:none\">$125</h4>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c050900d\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c050900d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c050900d\" style=\"color:#ffffff;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none\">Per Month</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1e818f8d\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-1e818f8d\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1e818f8d\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>800GB</strong> Online Storage</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f2b01ff6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f2b01ff6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f2b01ff6\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>20</strong> Files Per Day</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f1edeb3e\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f1edeb3e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f1edeb3e\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\"><strong>2TB</strong> Monthly Bandwidth</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-460a59f4\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-460a59f4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-460a59f4\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Secure Platform</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-d40660ad\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-d40660ad\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-d40660ad\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">Fast &amp; Reliable</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c40e59b6\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":37,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-c40e59b6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c40e59b6\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:37px\">24/7 Customer Support</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-ade68a7e\",\"buttons\":1,\"align\":\"center\",\"spacing\":50,\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"data\":[{\"text\":\"get started\",\"link\":\"#\",\"newTab\":false,\"color\":\"#b27cf5\",\"background\":\"#ffffff\",\"border\":\"#b27cf5\",\"hoverColor\":\"#ffffff\",\"hoverBackground\":\"#b27cf5\",\"hoverBorder\":\"\",\"borderSize\":2,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-ade68a7e\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:center;align-items:center\"><a href=\"#\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;border-width:2px;border-radius:30px;padding:12px 24px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/pricing --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-018fa1d1\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-018fa1d1\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5d1bfad6\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5d1bfad6\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-85954f32\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#646262\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-85954f32\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-85954f32\" style=\"color:#646262;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">06</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-fc1ca17b\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeTablet\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"lineHeight\":75,\"marginTop\":-120,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-fc1ca17b\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-fc1ca17b\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:none;line-height:75px\">Testimonials</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-969dc939\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"paddingType\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightMobile\":20,\"paddingLeftMobile\":20,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-969dc939\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-969dc939\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/testimonials -->\n<div class=\"wp-block-themeisle-blocks-testimonials\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-4d7cbd5f\",\"columns\":2,\"layout\":\"oneTwo\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginType\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopTablet\":44,\"marginTopMobile\":44,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-oneTwo-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-4d7cbd5f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-09b7d2fa\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"border\":10,\"borderColor\":\"#2d2e33\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-09b7d2fa\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#2d2e33;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-504320f2\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"hideTablet\":true,\"hideMobile\":true} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout hide-in-tablet hide-in-mobile has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-504320f2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f958c784\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f958c784\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:image {\"id\":206,\"align\":\"center\",\"width\":344,\"height\":353} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/team-2.jpg\" alt=\"\" class=\"wp-image-206\" width=\"344\" height=\"353\"/></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-bb5fc49d\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":25,\"paddingTopTablet\":25,\"paddingTopMobile\":25,\"paddingRight\":75,\"paddingRightTablet\":75,\"paddingRightMobile\":30,\"paddingLeft\":75,\"paddingLeftTablet\":75,\"paddingLeftMobile\":30,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#feb960\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-bb5fc49d\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#feb960;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-f070933f\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-f070933f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-f070933f\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">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.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-790c9aa3\",\"tag\":\"p\",\"headingColor\":\"#404248\",\"fontSize\":30,\"fontFamily\":\"Calligraffitti\",\"fontVariant\":\"normal\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-790c9aa3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-790c9aa3\" style=\"color:#404248;font-family:Calligraffitti;font-weight:normal;font-style:normal;text-transform:none\">Melina</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-35e1bddf\",\"tag\":\"h6\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-35e1bddf\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-35e1bddf\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Melina Albrecht</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-ccc39811\",\"tag\":\"p\",\"headingColor\":\"#616161\",\"fontSize\":13,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-ccc39811\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-ccc39811\" style=\"color:#616161;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Founder, TingTong</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/testimonials --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-72877362\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":65,\"paddingBottomMobile\":65,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-72877362\" style=\"background:#ffffff;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-674e4ebb\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-674e4ebb\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-cd118370\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-cd118370\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-cd118370\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">07</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2161193e\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-2161193e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2161193e\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Why select us?</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-60269cf7\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":75} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-60269cf7\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-60269cf7\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-6ff4fab7\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-6ff4fab7\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-cbf58a21\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-cbf58a21\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-4f8d5ef8\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"chart-bar\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-4f8d5ef8\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-chart-bar\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c840df36\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c840df36\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c840df36\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Business Growth</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5152e513\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-5152e513\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5152e513\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-316bcfc5\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":31,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":31,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-316bcfc5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-baa9ce8d\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"dollar-sign\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-baa9ce8d\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-dollar-sign\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-0e72e8f3\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-0e72e8f3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-0e72e8f3\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Unlimited Revisions</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4a8f8d6e\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4a8f8d6e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4a8f8d6e\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-a53d171f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-a53d171f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-d2a7ff67\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"directions\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#b27cf5\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-d2a7ff67\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-directions\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-404555db\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-404555db\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-404555db\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Ultimate Perfection</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-3b33fae4\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-3b33fae4\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-3b33fae4\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-87ca7ad2\",\"columns\":3,\"layout\":\"equal\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":0,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"marginTopTablet\":50,\"marginTopMobile\":0,\"marginBottom\":70,\"marginBottomTablet\":70,\"marginBottomMobile\":0} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-3-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-87ca7ad2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-97def172\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-97def172\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-eb6a3d83\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"tv\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#feb960\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-eb6a3d83\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-tv\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2eaea559\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-2eaea559\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2eaea559\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Smart Experience</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-76c68d95\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-76c68d95\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-76c68d95\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-318a575f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-318a575f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-5b5fc20e\",\"align\":\"center\",\"prefix\":\"far\",\"icon\":\"calendar-plus\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#fc5f45\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-5b5fc20e\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"far fa-calendar-plus\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-c911eecc\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-c911eecc\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-c911eecc\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Strict Deadline</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-2ae50b46\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-2ae50b46\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-2ae50b46\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-439e7cb2\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":30,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottom\":0,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeft\":30,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTopMobile\":0,\"marginBottomMobile\":70,\"columnWidth\":33.33} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-439e7cb2\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/font-awesome-icons {\"id\":\"wp-block-themeisle-blocks-font-awesome-icons-9bea5e7e\",\"align\":\"center\",\"prefix\":\"fas\",\"icon\":\"medal\",\"fontSize\":53,\"padding\":0,\"margin\":0,\"textColor\":\"#38c695\"} -->\n<p class=\"wp-block-themeisle-blocks-font-awesome-icons\" id=\"wp-block-themeisle-blocks-font-awesome-icons-9bea5e7e\" style=\"text-align:center\"><span class=\"wp-block-themeisle-blocks-font-awesome-icons-container\" style=\"border-radius:0%;border-style:solid;border-width:0px;display:inline-block;margin:0px\"><i class=\"fas fa-medal\" style=\"border-radius:0%;font-size:53px;padding:0px\"></i></span></p>\n<!-- /wp:themeisle-blocks/font-awesome-icons -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-a9602cb9\",\"tag\":\"div\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":20,\"marginBottomTablet\":20} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-a9602cb9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-a9602cb9\" style=\"color:#313131;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Reputed Company</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b506e11e\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-b506e11e\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b506e11e\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:27px\">Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-c9c8fabe\",\"columns\":2,\"layout\":\"twoOne\",\"layoutTablet\":\"twoOne\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"extended\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":150,\"marginTopTablet\":75,\"marginTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-2-columns has-desktop-twoOne-layout has-tablet-twoOne-layout has-mobile-collapsedRows-layout has-extended-gap has-vertical-center\" id=\"wp-block-themeisle-blocks-advanced-columns-c9c8fabe\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-62b4fdc5\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":30,\"paddingRightMobile\":30,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":30,\"paddingLeftMobile\":30,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":66.66} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-62b4fdc5\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-86f391ee\",\"tag\":\"h4\",\"align\":\"right\",\"alignMobile\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":25,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"lineHeight\":40,\"paddingTypeMobile\":\"unlinked\",\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h4 id=\"wp-block-themeisle-blocks-advanced-heading-86f391ee\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-86f391ee\" style=\"color:#313131;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none;line-height:40px\">Start your journey with us now</h4>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-00afb299\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"columnWidth\":33.34} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-00afb299\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/button-group {\"id\":\"wp-block-themeisle-blocks-button-group-db0741ff\",\"buttons\":1,\"align\":\"flex-start\",\"fontSize\":16,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"textTransform\":\"uppercase\",\"lineHeight\":50,\"data\":[{\"text\":\"get started\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#f64a2d\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"#f34123\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":30,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":0,\"paddingLeftRight\":40},{\"text\":\"\",\"link\":\"\",\"newTab\":false,\"color\":\"#ffffff\",\"background\":\"#32373c\",\"border\":\"\",\"hoverColor\":\"\",\"hoverBackground\":\"\",\"hoverBorder\":\"\",\"borderSize\":0,\"borderRadius\":0,\"boxShadow\":false,\"boxShadowColor\":\"\",\"boxShadowColorOpacity\":50,\"boxShadowBlur\":5,\"boxShadowSpread\":1,\"boxShadowHorizontal\":0,\"boxShadowVertical\":0,\"hoverBoxShadowColor\":\"\",\"hoverBoxShadowColorOpacity\":50,\"hoverBoxShadowBlur\":5,\"hoverBoxShadowSpread\":1,\"hoverBoxShadowHorizontal\":0,\"hoverBoxShadowVertical\":0,\"iconType\":\"none\",\"prefix\":\"\",\"icon\":\"\",\"paddingTopBottom\":12,\"paddingLeftRight\":24}]} -->\n<div id=\"wp-block-themeisle-blocks-button-group-db0741ff\" class=\"wp-block-themeisle-blocks-button-group\" style=\"justify-content:flex-start;align-items:flex-start\"><a href=\"\" target=\"_self\" class=\"wp-block-themeisle-blocks-button wp-block-themeisle-blocks-button-0\" style=\"font-size:16px;font-family:Poppins;font-weight:500;font-style:normal;text-transform:uppercase;line-height:50px;border-width:0px;border-radius:30px;padding:0px 40px \" rel=\"noopener noreferrer\"><span>get started</span></a></div>\n<!-- /wp:themeisle-blocks/button-group --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-f82cf83e\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRight\":0,\"paddingRightTablet\":0,\"paddingRightMobile\":0,\"paddingBottom\":125,\"paddingBottomTablet\":60,\"paddingBottomMobile\":60,\"paddingLeft\":0,\"paddingLeftTablet\":0,\"paddingLeftMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#f7f7f7\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-f82cf83e\" style=\"background:#f7f7f7;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-5313976f\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-5313976f\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-580a83cb\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ebebeb\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-580a83cb\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-580a83cb\" style=\"color:#ebebeb;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">08</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-934444a2\",\"align\":\"center\",\"headingColor\":\"#313131\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-934444a2\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-934444a2\" style=\"color:#313131;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Our Blog</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-5995f9b3\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#616161\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-5995f9b3\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-5995f9b3\" style=\"color:#616161;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\">We understand your requirement and provide quality works.</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-6f7343d1\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-6f7343d1\" style=\"background:#ffffff;border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-c7943764\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopMobile\":0,\"paddingBottomMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-c7943764\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/posts-grid {\"grid\":true,\"postsToShow\":3,\"displayCategory\":false,\"displayDate\":false,\"displayAuthor\":false,\"className\":\"neve-our-blog\"} /--></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-5c923559\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottom\":150,\"paddingBottomTablet\":150,\"paddingBottomMobile\":150,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":1140,\"horizontalAlign\":\"center\",\"backgroundType\":\"image\",\"backgroundImageID\":162,\"backgroundImageURL\":\"https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\",\"backgroundPosition\":\"top center\",\"backgroundRepeat\":\"no-repeat\",\"backgroundSize\":\"cover\",\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"align\":\"full\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-5c923559\" style=\"background-image:url( \'https://raw.githubusercontent.com/Codeinwp/gutenberg-templates/master/assets/images/path.jpg\' );background-attachment:scroll;background-position:top center;background-repeat:no-repeat;background-size:cover;border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:1140px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-ea4f9141\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-ea4f9141\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-7c14f198\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#636060\",\"fontSize\":273,\"fontFamily\":\"Poppins\",\"fontVariant\":\"700\",\"lineHeight\":200,\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingTop\":30,\"paddingTopTablet\":30,\"paddingTopMobile\":30,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-7c14f198\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-7c14f198\" style=\"color:#636060;font-family:Poppins;font-weight:700;font-style:normal;text-transform:none;line-height:200px\">09</div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b6cbd488\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":50,\"fontSizeMobile\":31,\"fontFamily\":\"Libre Baskerville\",\"fontVariant\":\"700\",\"textTransform\":\"capitalize\",\"lineHeight\":75,\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":-100,\"marginTopTablet\":-100,\"marginTopMobile\":-120,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-b6cbd488\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b6cbd488\" style=\"color:#ffffff;font-family:Libre Baskerville;font-weight:700;font-style:normal;text-transform:capitalize;line-height:75px\">Get in Touch</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-9b9da53a\",\"tag\":\"div\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":18,\"fontSizeTablet\":17,\"fontSizeMobile\":17,\"fontFamily\":\"Poppins\",\"fontVariant\":\"regular\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"paddingRightTablet\":10,\"paddingRightMobile\":10,\"paddingLeftTablet\":10,\"paddingLeftMobile\":10,\"marginTop\":20,\"marginBottom\":35,\"marginBottomTablet\":35,\"marginBottomMobile\":35} -->\n<div id=\"wp-block-themeisle-blocks-advanced-heading-9b9da53a\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-9b9da53a\" style=\"color:#ffffff;font-family:Poppins;font-weight:normal;font-style:normal;text-transform:none\"> Allow people to reach you directly through your site: </div>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-439baecf\",\"columns\":1,\"layout\":\"equal\",\"columnsGap\":\"nogap\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnsWidth\":820,\"horizontalAlign\":\"center\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-439baecf\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px;justify-content:center\"><div class=\"wp-themeisle-block-overlay\" style=\"opacity:0.5;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\" style=\"max-width:820px\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-3fc70a0b\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"marginTop\":0,\"marginTopTablet\":0,\"marginTopMobile\":0,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0,\"columnWidth\":100} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-3fc70a0b\" style=\"border-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:shortcode -->\n[wpforms id=\"649\"]\n<!-- /wp:shortcode --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->\n\n<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-97b4bb68\",\"columns\":4,\"layout\":\"equal\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"columnsGap\":\"nogap\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTopTablet\":0,\"paddingTopMobile\":0,\"paddingRightTablet\":15,\"paddingRightMobile\":15,\"paddingBottomTablet\":0,\"paddingBottomMobile\":0,\"paddingLeftTablet\":15,\"paddingLeftMobile\":15,\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"marginTop\":50,\"backgroundOverlayOpacity\":85,\"backgroundOverlayColor\":\"#262732\",\"borderType\":\"unlinked\",\"borderBottom\":3,\"borderColor\":\"#fc5f45\",\"align\":\"wide\"} -->\n<div class=\"wp-block-themeisle-blocks-advanced-columns alignwide has-4-columns has-desktop-equal-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-nogap-gap has-vertical-unset\" id=\"wp-block-themeisle-blocks-advanced-columns-97b4bb68\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:3px;border-left-width:0px;border-style:solid;border-color:#fc5f45;border-radius:0px;justify-content:unset\"><div class=\"wp-themeisle-block-overlay\" style=\"background:#262732;opacity:0.85;mix-blend-mode:normal\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-15f8a18a\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-15f8a18a\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-1b081d06\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#fc5f45\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-1b081d06\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-1b081d06\" style=\"color:#fc5f45;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Here for you</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-055b6f1c\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-055b6f1c\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-055b6f1c\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Call us 24/7. We are there for your support.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-db40f424\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-db40f424\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-dd781ded\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#38c695\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-dd781ded\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-dd781ded\" style=\"color:#38c695;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">About Neve</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-001f6215\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-001f6215\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-001f6215\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">Res enim fortasse verae, certe graves.</p>\n<!-- /wp:themeisle-blocks/advanced-heading --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-4f89091f\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-4f89091f\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-208c2c00\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#b27cf5\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-208c2c00\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-208c2c00\" style=\"color:#b27cf5;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Where to find us</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-80c5311f\",\"tag\":\"p\",\"align\":\"center\",\"headingColor\":\"#ffffff\",\"fontSize\":15,\"fontFamily\":\"Poppins\",\"fontVariant\":\"300\",\"lineHeight\":27,\"marginBottom\":0,\"marginBottomTablet\":0,\"marginBottomMobile\":0} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-80c5311f\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-80c5311f\" style=\"color:#ffffff;font-family:Poppins;font-weight:300;font-style:normal;text-transform:none;line-height:27px\">42 Boulevard, California, number 23</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column -->\n\n<!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-f6f1004a\",\"paddingType\":\"unlinked\",\"paddingTypeTablet\":\"unlinked\",\"paddingTypeMobile\":\"unlinked\",\"padding\":0,\"paddingTablet\":0,\"paddingMobile\":0,\"paddingTop\":50,\"paddingTopTablet\":30,\"paddingTopMobile\":50,\"paddingRight\":10,\"paddingRightMobile\":25,\"paddingBottom\":45,\"paddingBottomTablet\":25,\"paddingBottomMobile\":45,\"paddingLeft\":10,\"paddingLeftMobile\":25,\"marginType\":\"linked\",\"marginTypeTablet\":\"linked\",\"marginTypeMobile\":\"linked\",\"margin\":0,\"marginTablet\":0,\"marginMobile\":0,\"borderType\":\"unlinked\",\"columnWidth\":25} -->\n<div class=\"wp-block-themeisle-blocks-advanced-column\" id=\"wp-block-themeisle-blocks-advanced-column-f6f1004a\" style=\"border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;border-style:solid;border-color:#000000;border-radius:0px\"><!-- wp:themeisle-blocks/service -->\n<div class=\"wp-block-themeisle-blocks-service\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-6e4575a9\",\"tag\":\"h6\",\"align\":\"center\",\"headingColor\":\"#feb960\",\"fontSize\":18,\"fontFamily\":\"Poppins\",\"fontVariant\":\"500\",\"lineHeight\":26,\"marginBottom\":28,\"marginBottomTablet\":26,\"marginBottomMobile\":26} -->\n<h6 id=\"wp-block-themeisle-blocks-advanced-heading-6e4575a9\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-6e4575a9\" style=\"color:#feb960;font-family:Poppins;font-weight:500;font-style:normal;text-transform:none;line-height:26px\">Keep in touch</h6>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/sharing-icons {\"align\":\"center\",\"className\":\"is-style-icons\"} /--></div>\n<!-- /wp:themeisle-blocks/service --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->','Home','','inherit','closed','closed','','783-revision-v1','','','2019-04-13 19:48:28','2019-04-13 19:48:28','',783,'https://test.evergreenwellness.com/2019/04/13/783-revision-v1/',0,'revision','',0),(794,1,'2019-04-13 20:15:41','2019-04-13 20:15:41','','flower-3415550_1920','','inherit','open','closed','','flower-3415550_1920','','','2019-04-13 20:15:41','2019-04-13 20:15:41','',783,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/flower-3415550_1920.jpg',0,'attachment','image/jpeg',0),(795,1,'2018-11-14 09:45:08','2018-11-14 09:45:08','','neve-facebook','','inherit','open','closed','','neve-facebook-2','','','2018-11-14 09:45:08','2018-11-14 09:45:08','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook-1.png',0,'attachment','image/png',0),(796,1,'2018-11-14 09:45:10','2018-11-14 09:45:10','','neve-twitter','','inherit','open','closed','','neve-twitter-2','','','2018-11-14 09:45:10','2018-11-14 09:45:10','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter-1.png',0,'attachment','image/png',0),(797,1,'2018-11-14 09:45:11','2018-11-14 09:45:11','','neve-instagram','','inherit','open','closed','','neve-instagram-2','','','2018-11-14 09:45:11','2018-11-14 09:45:11','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram-1.png',0,'attachment','image/png',0),(798,1,'2018-11-14 09:45:13','2018-11-14 09:45:13','','neve-googleplus','','inherit','open','closed','','neve-googleplus-2','','','2018-11-14 09:45:13','2018-11-14 09:45:13','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-googleplus-1.png',0,'attachment','image/png',0),(799,1,'2018-11-14 09:47:17','2018-11-14 09:47:17','','neve-play','','inherit','open','closed','','neve-play-2','','','2018-11-14 09:47:17','2018-11-14 09:47:17','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-play-1.png',0,'attachment','image/png',0),(800,1,'2018-12-12 16:19:01','2018-12-12 16:19:01','https://mystock.themeisle.com/photo/path/','nv-1','','inherit','open','closed','','nv-1-6','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-5.jpg',0,'attachment','image/jpeg',0),(801,1,'2018-12-12 16:34:37','2018-12-12 16:34:37','','neve-business-growth-1','','inherit','open','closed','','neve-business-growth-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1-1.png',0,'attachment','image/png',0),(802,1,'2018-12-12 16:35:59','2018-12-12 16:35:59','','neve-dollar-1','','inherit','open','closed','','neve-dollar-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-dollar-1-1.png',0,'attachment','image/png',0),(803,1,'2018-12-12 16:37:44','2018-12-12 16:37:44','','neve-clock-1','','inherit','open','closed','','neve-clock-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-clock-1-1.png',0,'attachment','image/png',0),(804,1,'2018-12-12 16:38:45','2018-12-12 16:38:45','','neve-smile-1','','inherit','open','closed','','neve-smile-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smile-1-1.png',0,'attachment','image/png',0),(805,1,'2018-12-12 16:44:32','2018-12-12 16:44:32','https://pixabay.com/en/metro-subway-train-station-1209556/','nv-3','','inherit','open','closed','','nv-3-5','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-3-4.jpg',0,'attachment','image/jpeg',0),(806,1,'2018-12-12 16:46:10','2018-12-12 16:46:10','','neve-envelope-1','','inherit','open','closed','','neve-envelope-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-envelope-1-1.png',0,'attachment','image/png',0),(807,1,'2018-12-12 16:47:09','2018-12-12 16:47:09','','neve-map-1','','inherit','open','closed','','neve-map-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-map-1-1.png',0,'attachment','image/png',0),(808,1,'2018-12-12 16:47:59','2018-12-12 16:47:59','','neve-photography-1','','inherit','open','closed','','neve-photography-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-photography-1-1.png',0,'attachment','image/png',0),(809,1,'2018-12-12 16:49:00','2018-12-12 16:49:00','','neve-phone-1','','inherit','open','closed','','neve-phone-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-phone-1-1.png',0,'attachment','image/png',0),(810,1,'2018-12-12 17:04:39','2018-12-12 17:04:39','','neve-chart-up-1','','inherit','open','closed','','neve-chart-up-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1-1.png',0,'attachment','image/png',0),(811,1,'2018-12-12 17:05:58','2018-12-12 17:05:58','','neve-user-1','','inherit','open','closed','','neve-user-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1-1.png',0,'attachment','image/png',0),(812,1,'2018-12-12 17:06:48','2018-12-12 17:06:48','','neve-heart-1','','inherit','open','closed','','neve-heart-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1-1.png',0,'attachment','image/png',0),(813,1,'2018-12-12 17:07:48','2018-12-12 17:07:48','','neve-gift-1','','inherit','open','closed','','neve-gift-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1-1.png',0,'attachment','image/png',0),(814,1,'2018-12-12 17:09:10','2018-12-12 17:09:10','https://mystock.themeisle.com/photo/high-seats/','nv-5','','inherit','open','closed','','nv-5-5','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-4.jpg',0,'attachment','image/jpeg',0),(815,1,'2018-12-12 17:13:31','2018-12-12 17:13:31','https://mystock.themeisle.com/photo/ipad/','nv-4','','inherit','open','closed','','nv-4-5','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-4.jpg',0,'attachment','image/jpeg',0),(816,1,'2018-12-12 17:14:32','2018-12-12 17:14:32','https://mystock.themeisle.com/photo/devices/','nv-6','','inherit','open','closed','','nv-6-5','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-4.jpg',0,'attachment','image/jpeg',0),(817,1,'2018-12-12 17:22:21','2018-12-12 17:22:21','','nv-testimonial-signature','','inherit','open','closed','','nv-testimonial-signature-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-1.png',0,'attachment','image/png',0),(818,1,'2018-12-12 17:25:22','2018-12-12 17:25:22','','alexis-blockquote6','','inherit','open','closed','','alexis-blockquote6-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/alexis-blockquote6-1.jpg',0,'attachment','image/jpeg',0),(819,1,'2018-12-13 08:41:07','2018-12-13 08:41:07','','neve-unlimited-revisions2','','inherit','open','closed','','neve-unlimited-revisions2-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2-1.png',0,'attachment','image/png',0),(820,1,'2018-12-13 08:42:06','2018-12-13 08:42:06','','neve-ultimate-perfection-1','','inherit','open','closed','','neve-ultimate-perfection-1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1-1.png',0,'attachment','image/png',0),(821,1,'2018-12-13 08:55:37','2018-12-13 08:55:37','','neve-smart-experience1','','inherit','open','closed','','neve-smart-experience1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1-1.png',0,'attachment','image/png',0),(822,1,'2018-12-13 08:56:09','2018-12-13 08:56:09','','neve-strict-deadline1','','inherit','open','closed','','neve-strict-deadline1-2','','','2019-04-14 00:00:02','2019-04-14 00:00:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1-1.png',0,'attachment','image/png',0),(823,1,'2018-12-13 08:56:45','2018-12-13 08:56:45','','neve-reputed-copmany1','','inherit','open','closed','','neve-reputed-copmany1-2','','','2019-04-14 00:00:03','2019-04-14 00:00:03','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1-1.png',0,'attachment','image/png',0),(824,1,'2018-12-14 12:48:58','2018-12-14 12:48:58','https://mystock.themeisle.com/photo/sun-hat/','nv-team1-4','','inherit','open','closed','','nv-team1-4-2','','','2019-04-14 00:00:03','2019-04-14 00:00:03','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4-1.jpg',0,'attachment','image/jpeg',0),(825,1,'2018-12-14 12:51:26','2018-12-14 12:51:26','https://mystock.themeisle.com/photo/winter-hat/','nv-team2-1','','inherit','open','closed','','nv-team2-1-2','','','2019-04-14 00:00:03','2019-04-14 00:00:03','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-1.jpg',0,'attachment','image/jpeg',0),(826,1,'2018-12-14 13:00:12','2018-12-14 13:00:12','https://mystock.themeisle.com/photo/thinking-time/','nv-team3-1','','inherit','open','closed','','nv-team3-1-2','','','2019-04-14 00:00:03','2019-04-14 00:00:03','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1-1.jpg',0,'attachment','image/jpeg',0),(827,1,'2018-12-14 13:01:44','2018-12-14 13:01:44','https://mystock.themeisle.com/photo/girl/','nv-team4-1','','inherit','open','closed','','nv-team4-1-2','','','2019-04-14 00:00:03','2019-04-14 00:00:03','',837,'https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1-1.jpg',0,'attachment','image/jpeg',0),(828,1,'2019-03-05 14:43:33','2019-03-05 14:43:33','','sweet-cake-christmas-tree','','inherit','open','closed','','sweet-cake-christmas-tree-3','','','2019-03-05 14:43:33','2019-03-05 14:43:33','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/sweet-cake-christmas-tree-4.jpg',0,'attachment','image/jpeg',0),(829,1,'2019-03-05 14:44:20','2019-03-05 14:44:20','','palm-fruits','','inherit','open','closed','','palm-fruits-3','','','2019-03-05 14:44:20','2019-03-05 14:44:20','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/palm-fruits-4.jpg',0,'attachment','image/jpeg',0),(830,1,'2019-03-05 14:44:51','2019-03-05 14:44:51','','boats','','inherit','open','closed','','boats-3','','','2019-03-05 14:44:51','2019-03-05 14:44:51','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/boats-4.jpg',0,'attachment','image/jpeg',0),(831,1,'2019-03-05 14:45:30','2019-03-05 14:45:30','','eating-place','','inherit','open','closed','','eating-place-3','','','2019-03-05 14:45:30','2019-03-05 14:45:30','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/01/eating-place-4.jpg',0,'attachment','image/jpeg',0),(832,1,'2019-03-05 14:45:59','2019-03-05 14:45:59','','1-2','','inherit','open','closed','','1-2-2','','','2019-03-05 14:45:59','2019-03-05 14:45:59','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/1-2-4.jpg',0,'attachment','image/jpeg',0),(833,1,'2019-03-05 14:46:32','2019-03-05 14:46:32','','9','','inherit','open','closed','','9-3','','','2019-03-05 14:46:32','2019-03-05 14:46:32','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/9-4.jpg',0,'attachment','image/jpeg',0),(834,1,'2019-03-05 14:47:12','2019-03-05 14:47:12','','blog3','','inherit','open','closed','','blog3-3','','','2019-03-05 14:47:12','2019-03-05 14:47:12','',0,'https://test.evergreenwellness.com/wp-content/uploads/2018/09/blog3-4.jpg',0,'attachment','image/jpeg',0),(835,1,'2019-04-04 09:09:44','2019-04-04 09:09:44','','placeholder-image','','inherit','open','closed','','placeholder-image-5','','','2019-04-04 09:09:44','2019-04-04 09:09:44','',0,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/placeholder-image-4.jpg',0,'attachment','image/jpeg',0),(836,1,'2018-09-06 07:01:59','2018-09-06 07:01:59','','Blog','','trash','closed','closed','','neve-blog__trashed-2','','','2019-04-15 00:12:13','2019-04-15 00:12:13','',0,'https://demo.themeisle.com/neve/?page_id=26',0,'page','',0),(837,1,'2018-08-09 12:35:35','2018-08-09 12:35:35','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			03		\n			<h2>We treat the following cases</h2>		\n			and more ... ...		\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/flowers-429041_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Addictions </li><li>Depression &amp; Anxiety </li><li>Work &amp; Sport Injuries </li><li>Diabetes, High Blood Pressure </li><li>Stroke Rehabilitation </li><li>Skin Problem </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Have a question\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Digestion Probelem </li><li>Paralyes </li><li>Weight Loss </li><li>Fibromylgia &amp; Chronic Fatigue </li><li>Insomnia &amp; Migraines </li><li>Men&#039;s Health </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Where to find us\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2418339_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Facial Rejuvenation </li><li>Ear &amp; Nose Problems </li><li>Poor Circulation </li><li>PMS &amp; Hormone Imbalance </li><li>Infertility </li><li>Women&#039;s Health </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						make an appointment\n					</a>\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238		\n			<h4>Pain relief with <br>just one needle</h4>		\n		https://vimeo.com/194991450		\n			<h4><a href=\"https://ibreathin.com/\">Weight Management <br> Breathing yourself thin</a></h4>		\n		https://youtu.be/RTQGpPwn2BU		\n			<h4>Amazing story from one of our stroke rehabilitation patient</h4>		\n			04		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			05		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			06		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			07		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			08		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			09		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Contact us by phone</h6><p>(316)-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','publish','closed','open','','neve-home','','','2019-04-20 18:35:57','2019-04-20 18:35:57','',0,'https://demo.themeisle.com/neve/?page_id=2',0,'page','',0),(905,1,'2019-04-15 00:08:41','2019-04-15 00:08:41','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1271\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-1024x678.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration\nPain relief with only one needle\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><a href=\"https://evergreenwellness.com/tcm-intro/\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a href=\"https://evergreenwellness.com/stroke-research/\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial​</a></p><p><a href=\"https://evergreenwellness.com/stroke/\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a href=\"https://evergreenwellness.com/heart/\">TCM and Heart Diseases</a></p><p><a href=\"https://evergreenwellness.com/infertility/\">Traditional Chinese Medicine and Infertility</a></p>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"fcefa19e31\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 00:08:41','2019-04-15 00:08:41','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(903,1,'2019-04-14 22:32:12','2019-04-14 22:32:12','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1271\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-1024x678.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			04		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration\nPain relief with only one needle\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			07		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate 		\n			Well Trained		\n			Experienced		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			08		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><a href=\"https://evergreenwellness.com/tcm-intro/\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a href=\"https://evergreenwellness.com/stroke-research/\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial​</a></p><p><a href=\"https://evergreenwellness.com/stroke/\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a href=\"https://evergreenwellness.com/heart/\">TCM and Heart Diseases</a></p><p><a href=\"https://evergreenwellness.com/infertility/\">Traditional Chinese Medicine and Infertility</a></p>		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 22:32:12','2019-04-14 22:32:12','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(849,1,'2019-04-14 00:43:24','2019-04-14 00:43:24','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/cherry-blossom-4114044_1920-o6c2zkhc0o84c8c18n5l2ybgpiwe9s5j70al1vgxhm.jpg\" title=\"cherry-blossom-4114044_1920\" alt=\"cherry-blossom-4114044_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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> </p>		\n			02		\n			<h2>Our focus.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"55\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-envelope-1.png\" alt=\"\" /></figure><h5>Web Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"54\" height=\"48\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-map-1.png\" alt=\"\" /></figure><h5>UX Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"44\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-photography-1.png\" alt=\"\" /></figure><h5>Photography</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-phone-1.png\" alt=\"\" /></figure><h5>App Development</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					 \n												<a href=\"\"><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></a>\n					<p><iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></p>\n			03		\n			<h2>Our team.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Daniele Johnson</h6><p>Founder & CEO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Summer Geller</h6><p>CTO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Marissa Adams</h6><p>Lead Developer</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Jennifer Gilmore</h6><p>Marketing</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png 334w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"75e7a80b53\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"ec48dce936\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"c756045f0d\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 00:43:24','2019-04-14 00:43:24','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(848,1,'2019-04-14 00:39:59','2019-04-14 00:39:59','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/cherry-blossom-4114044_1920-o6c2zkhc0o84c8c18n5l2ybgpiwe9s5j70al1vgxhm.jpg\" title=\"cherry-blossom-4114044_1920\" alt=\"cherry-blossom-4114044_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</strong></p><p><strong> Evergreen 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> </strong></p><p><br /><br /></p>		\n			02		\n			<h2>Our focus.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"55\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-envelope-1.png\" alt=\"\" /></figure><h5>Web Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"54\" height=\"48\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-map-1.png\" alt=\"\" /></figure><h5>UX Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"44\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-photography-1.png\" alt=\"\" /></figure><h5>Photography</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-phone-1.png\" alt=\"\" /></figure><h5>App Development</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					 \n												<a href=\"\"><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></a>\n					<p><iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></p>\n			03		\n			<h2>Our team.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Daniele Johnson</h6><p>Founder & CEO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Summer Geller</h6><p>CTO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Marissa Adams</h6><p>Lead Developer</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Jennifer Gilmore</h6><p>Marketing</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png 334w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"75e7a80b53\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"ec48dce936\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"c756045f0d\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 00:39:59','2019-04-14 00:39:59','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(838,1,'2018-08-09 12:35:35','2018-08-09 12:35:35','<h1>We design things with love and passion.</h1>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n			<figure><img width=\"45\" height=\"45\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-dollar-1.png\" alt=\"\" /></figure><h3>Fixed price projects</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-clock-1.png\" alt=\"\" /></figure><h3>Receive on time</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-smile-1.png\" alt=\"\" /></figure><h3>Satisfaction guaranteed</h3>		\n										<img width=\"529\" height=\"673\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-3.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-3.jpg 529w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-3-236x300.jpg 236w\" sizes=\"(max-width: 529px) 100vw, 529px\" />											\n			01		\n			<h2>about us.</h2>		\n		<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.ÃÂ </p><p>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>		\n			02		\n			<h2>Our focus.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"55\" height=\"55\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-envelope-1.png\" alt=\"\" /></figure><h5>Web Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"54\" height=\"48\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-map-1.png\" alt=\"\" /></figure><h5>UX Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"44\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-photography-1.png\" alt=\"\" /></figure><h5>Photography</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"50\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-phone-1.png\" alt=\"\" /></figure><h5>App Development</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					ÃÂ \n												<a href=\"\"><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/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></a>\n					<p><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></p>\n			03		\n			<h2>Our team.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"526\" height=\"540\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team1-4.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team1-4.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team1-4-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Daniele Johnson</h6><p>Founder & CEO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Summer Geller</h6><p>CTO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team3-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team3-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team3-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Marissa Adams</h6><p>Lead Developer</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team4-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team4-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team4-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Jennifer Gilmore</h6><p>Marketing</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-5.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-4.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-6.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1.jpg 1600w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-300x200.jpg 300w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-768x512.jpg 768w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-1024x682.jpg 1024w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-testimonial-signature.png 334w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1.jpg 1600w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-300x200.jpg 300w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-768x512.jpg 768w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-1024x682.jpg 1024w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/fruit-smoothies/\" title=\"Do it with passion\">\n					Do it with passion				</a>\n							</h6>\n				On recommend tolerably my belonging or am. Mutual has cannot beauty indeed now sussex merely you. It possible no husbands jennings ye offended packages pleasant he. Remainder recommend engrossed who eat she defective applauded&hellip;			\n			<!-- .obfx-grid-col-content --></article><article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/quid-autem-habent-admirationis/\" title=\"Always deliver more than expected\">\n					Always deliver more than expected				</a>\n							</h6>\n				Needed feebly dining oh talked wisdom oppose at. Applauded use attempted strangers now are middleton concluded had. It is tried Ã¯Â»Â¿no added purse shall no on truth. Pleased anxious or as in by viewing&hellip;			\n			<!-- .obfx-grid-col-content --></article><article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/beatum-inquit/\" title=\"Take the risk or lose the chance\">\n					Take the risk or lose the chance				</a>\n							</h6>\n				On then sake home is am leaf. Of suspicion do departure at extremely he believing. Do know said mind do rent they oh hope of. General enquire picture letters garrets on offices of no&hellip;			\n			<!-- .obfx-grid-col-content --></article><!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"3602d2b488\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"cacb43406b\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"de0f14a7c3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-instagram.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/11/neve-instagram.png\"></a>\n    <a href><img src=\"https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2018-08-09 12:35:35','2018-08-09 12:35:35','',837,'https://test.evergreenwellness.com/2018/08/09/837-revision-v1/',0,'revision','',0),(840,1,'2019-04-14 00:07:17','2019-04-14 00:07:17','<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-dollar-1.png\" alt=\"\" /></figure><h3>Fixed price projects</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-clock-1.png\" alt=\"\" /></figure><h3>Receive on time</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smile-1.png\" alt=\"\" /></figure><h3>Satisfaction guaranteed</h3>','a1','','publish','closed','closed','','a1','','','2019-04-14 00:07:17','2019-04-14 00:07:17','',0,'https://test.evergreenwellness.com/?elementor_library=a1',0,'elementor_library','',0),(841,1,'2019-04-14 00:07:17','2019-04-14 00:07:17','','a1','','inherit','closed','closed','','840-revision-v1','','','2019-04-14 00:07:17','2019-04-14 00:07:17','',840,'https://test.evergreenwellness.com/2019/04/14/840-revision-v1/',0,'revision','',0),(845,1,'2019-04-14 00:25:02','2019-04-14 00:25:02','','water-lily-2536194_1920','','inherit','open','closed','','water-lily-2536194_1920','','','2019-04-14 00:25:02','2019-04-14 00:25:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg',0,'attachment','image/jpeg',0),(846,1,'2019-04-14 00:32:52','2019-04-14 00:32:52','','cherry-blossom-4114044_1920','','inherit','open','closed','','cherry-blossom-4114044_1920','','','2019-04-14 00:32:52','2019-04-14 00:32:52','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/cherry-blossom-4114044_1920.jpg',0,'attachment','image/jpeg',0),(843,1,'2019-04-14 00:10:21','2019-04-14 00:10:21','','water-lilies-3491870_1920','','inherit','open','closed','','water-lilies-3491870_1920','','','2019-04-14 00:10:21','2019-04-14 00:10:21','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lilies-3491870_1920.jpg',0,'attachment','image/jpeg',0),(844,1,'2019-04-14 00:13:13','2019-04-14 00:13:13','','cherry-blossoms-3327498_1920','','inherit','open','closed','','cherry-blossoms-3327498_1920','','','2019-04-14 00:13:13','2019-04-14 00:13:13','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/cherry-blossoms-3327498_1920.jpg',0,'attachment','image/jpeg',0),(842,1,'2019-04-14 00:07:17','2019-04-14 00:07:17','<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-dollar-1.png\" alt=\"\" /></figure><h3>Fixed price projects</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-clock-1.png\" alt=\"\" /></figure><h3>Receive on time</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smile-1.png\" alt=\"\" /></figure><h3>Satisfaction guaranteed</h3>','a1','','inherit','closed','closed','','840-revision-v1','','','2019-04-14 00:07:17','2019-04-14 00:07:17','',840,'https://test.evergreenwellness.com/2019/04/14/840-revision-v1/',0,'revision','',0),(847,1,'2019-04-14 00:39:58','2019-04-14 00:39:58','<h1>We design things with love and passion.</h1>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-dollar-1-1.png\" alt=\"\" /></figure><h3>Fixed price projects</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-clock-1-1.png\" alt=\"\" /></figure><h3>Receive on time</h3>		\n			<figure><img width=\"45\" height=\"45\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smile-1-1.png\" alt=\"\" /></figure><h3>Satisfaction guaranteed</h3>		\n										<img width=\"529\" height=\"673\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-3-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-3-4.jpg 529w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-3-236x300.jpg 236w\" sizes=\"(max-width: 529px) 100vw, 529px\" />											\n			01		\n			<h2>about us.</h2>		\n		<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.ÃÂ </p><p>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.</p>		\n			02		\n			<h2>Our focus.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"55\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-envelope-1-1.png\" alt=\"\" /></figure><h5>Web Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"54\" height=\"48\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-map-1-1.png\" alt=\"\" /></figure><h5>UX Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"44\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-photography-1-1.png\" alt=\"\" /></figure><h5>Photography</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-phone-1-1.png\" alt=\"\" /></figure><h5>App Development</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					ÃÂ \n												<a href=\"\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-play-1.png\" style=\"display: block; margin: 0 auto;\"><p style=\"text-align: center; margin-top: 15px;\">Click to play the video</p></a>\n					<p><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></p>\n			03		\n			<h2>Our team.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team1-4-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Daniele Johnson</h6><p>Founder & CEO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Summer Geller</h6><p>CTO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team3-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Marissa Adams</h6><p>Lead Developer</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team4-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Jennifer Gilmore</h6><p>Marketing</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-4.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-4.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-4.jpg 540w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-5.jpg 1600w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-300x200.jpg 300w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-768x512.jpg 768w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-1024x682.jpg 1024w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-1.jpg 526w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-1.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-1.png 334w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2-1.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1-1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1-1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1-1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-5.jpg 1600w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-300x200.jpg 300w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-768x512.jpg 768w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-1024x682.jpg 1024w, https://demo.themeisle.com/neve-onboarding/wp-content/uploads/sites/173/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/fruit-smoothies/\" title=\"Do it with passion\">\n					Do it with passion				</a>\n							</h6>\n				On recommend tolerably my belonging or am. Mutual has cannot beauty indeed now sussex merely you. It possible no husbands jennings ye offended packages pleasant he. Remainder recommend engrossed who eat she defective applauded&hellip;			\n			<!-- .obfx-grid-col-content --></article><article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/quid-autem-habent-admirationis/\" title=\"Always deliver more than expected\">\n					Always deliver more than expected				</a>\n							</h6>\n				Needed feebly dining oh talked wisdom oppose at. Applauded use attempted strangers now are middleton concluded had. It is tried Ã¯Â»Â¿no added purse shall no on truth. Pleased anxious or as in by viewing&hellip;			\n			<!-- .obfx-grid-col-content --></article><article>			<h6>\n							<a href=\"https://demo.themeisle.com/neve-onboarding/beatum-inquit/\" title=\"Take the risk or lose the chance\">\n					Take the risk or lose the chance				</a>\n							</h6>\n				On then sake home is am leaf. Of suspicion do departure at extremely he believing. Do know said mind do rent they oh hope of. General enquire picture letters garrets on offices of no&hellip;			\n			<!-- .obfx-grid-col-content --></article><!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"3602d2b488\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"cacb43406b\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://demo.themeisle.com/neve-onboarding/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"de0f14a7c3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/neve-onboarding/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"520\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook-1.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter-1.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram-1.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-googleplus-1.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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook-1.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter-1.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram-1.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-googleplus-1.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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 00:39:58','2019-04-14 00:39:58','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(864,1,'2019-04-14 16:53:21','2019-04-14 16:53:21','','gao-1','','inherit','open','closed','','gao-1','','','2019-04-14 16:53:21','2019-04-14 16:53:21','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1.jpg',0,'attachment','image/jpeg',0),(865,1,'2019-04-14 16:54:04','2019-04-14 16:54:04','','carrie-1024x1024','','inherit','open','closed','','carrie-1024x1024','','','2019-04-14 16:54:04','2019-04-14 16:54:04','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/carrie-1024x1024.jpg',0,'attachment','image/jpeg',0),(868,1,'2019-04-14 18:09:17','2019-04-14 18:09:17','','IMG_0238-1024x1024','','inherit','open','closed','','img_0238-1024x1024','','','2019-04-14 18:09:17','2019-04-14 18:09:17','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg',0,'attachment','image/jpeg',0),(851,1,'2019-04-14 00:54:15','2019-04-14 00:54:15','','celandine-2206826_1920','','inherit','open','closed','','celandine-2206826_1920','','','2019-04-14 00:54:15','2019-04-14 00:54:15','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/celandine-2206826_1920.jpg',0,'attachment','image/jpeg',0),(852,1,'2019-04-14 00:57:56','2019-04-14 00:57:56','','orchid-4066137_1920','','inherit','open','closed','','orchid-4066137_1920','','','2019-04-14 00:57:56','2019-04-14 00:57:56','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/orchid-4066137_1920.jpg',0,'attachment','image/jpeg',0),(853,1,'2019-04-14 01:02:24','2019-04-14 01:02:24','<h1>We offer the best Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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> </p>		\n			02		\n			<h2>Our focus.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"55\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-envelope-1.png\" alt=\"\" /></figure><h5>Web Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"54\" height=\"48\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-map-1.png\" alt=\"\" /></figure><h5>UX Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"44\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-photography-1.png\" alt=\"\" /></figure><h5>Photography</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-phone-1.png\" alt=\"\" /></figure><h5>App Development</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					 \n												<a href=\"\"><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></a>\n					<p><iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></p>\n			03		\n			<h2>Our team.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Daniele Johnson</h6><p>Founder & CEO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Summer Geller</h6><p>CTO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Marissa Adams</h6><p>Lead Developer</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Jennifer Gilmore</h6><p>Marketing</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png 334w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"75e7a80b53\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"ec48dce936\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"c756045f0d\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 01:02:24','2019-04-14 01:02:24','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(855,1,'2019-04-14 15:11:59','2019-04-14 15:11:59','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our focus.</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"55\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-envelope-1.png\" alt=\"\" /></figure><h5>Web Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"54\" height=\"48\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-map-1.png\" alt=\"\" /></figure><h5>UX Design</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"44\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-photography-1.png\" alt=\"\" /></figure><h5>Photography</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"55\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-phone-1.png\" alt=\"\" /></figure><h5>App Development</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					 \n												<a href=\"\"><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></a>\n					<p><iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></p>\n			03		\n			<h2>Our team.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Daniele Johnson</h6><p>Founder & CEO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Summer Geller</h6><p>CTO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Marissa Adams</h6><p>Lead Developer</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Jennifer Gilmore</h6><p>Marketing</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png 334w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"157e471417\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 15:11:59','2019-04-14 15:11:59','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(867,1,'2019-04-14 17:03:44','2019-04-14 17:03:44','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					 \n												<a href=\"\"><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></a>\n					<p><iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></p>\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"287\" height=\"275\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<figure><img width=\"1024\" height=\"1024\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/carrie-1024x1024.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/carrie-1024x1024.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/carrie-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/carrie-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/carrie-1024x1024-768x768.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png 334w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"157e471417\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 17:03:44','2019-04-14 17:03:44','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(861,1,'2019-04-14 16:30:04','2019-04-14 16:30:04','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our focus.</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Massage</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>Analytics release series A financing launch party interaction design android angel investor.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					 \n												<a href=\"\"><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></a>\n					<p><iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></p>\n			03		\n			<h2>Our team.</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team1-4-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Daniele Johnson</h6><p>Founder & CEO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Summer Geller</h6><p>CTO</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team3-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Marissa Adams</h6><p>Lead Developer</p>		\n			<figure><img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team4-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" /></figure><h6>Jennifer Gilmore</h6><p>Marketing</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png 334w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"157e471417\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 16:30:04','2019-04-14 16:30:04','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(898,1,'2019-04-14 22:03:38','2019-04-14 22:03:38','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1271\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-1024x678.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			04		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration\nPain relief with only one needle\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			07		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate 		\n			Well Trained		\n			Experienced		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			08		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><a href=\"https://evergreenwellness.com/tcm-intro/\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a href=\"https://evergreenwellness.com/stroke-research/\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial​</a></p><p><a href=\"https://evergreenwellness.com/stroke/\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a href=\"https://evergreenwellness.com/heart/\">TCM and Heart Diseases</a></p><p><a href=\"https://evergreenwellness.com/infertility/\">Traditional Chinese Medicine and Infertility</a></p>		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"157e471417\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 22:03:38','2019-04-14 22:03:38','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(875,1,'2019-04-14 18:36:40','2019-04-14 18:36:40','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					 \n												<a href=\"\"><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></a>\n					<p><iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></p>\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png 334w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"157e471417\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 18:36:40','2019-04-14 18:36:40','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(870,1,'2019-04-14 18:23:59','2019-04-14 18:23:59','','tin-3518967_1920','','inherit','open','closed','','tin-3518967_1920','','','2019-04-14 18:23:59','2019-04-14 18:23:59','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/tin-3518967_1920.jpg',0,'attachment','image/jpeg',0),(871,1,'2019-04-14 18:24:13','2019-04-14 18:24:13','','rose-165819_1920','','inherit','open','closed','','rose-165819_1920','','','2019-04-14 18:24:13','2019-04-14 18:24:13','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-165819_1920.jpg',0,'attachment','image/jpeg',0),(872,1,'2019-04-14 18:24:38','2019-04-14 18:24:38','','ornamental-poppies-139409_1920','','inherit','open','closed','','ornamental-poppies-139409_1920','','','2019-04-14 18:24:38','2019-04-14 18:24:38','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg',0,'attachment','image/jpeg',0),(873,1,'2019-04-14 18:24:49','2019-04-14 18:24:49','','red-roses-4232_1920','','inherit','open','closed','','red-roses-4232_1920','','','2019-04-14 18:24:49','2019-04-14 18:24:49','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg',0,'attachment','image/jpeg',0),(874,1,'2019-04-14 18:28:53','2019-04-14 18:28:53','','roses-3418141_1920','','inherit','open','closed','','roses-3418141_1920','','','2019-04-14 18:28:53','2019-04-14 18:28:53','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg',0,'attachment','image/jpeg',0),(876,1,'2019-04-14 18:37:03','2019-04-14 18:37:03','<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>','','','publish','closed','closed','','19155eb74d8d1d2a76fc88956017d70a','','','2019-04-14 18:37:03','2019-04-14 18:37:03','',0,'https://test.evergreenwellness.com/2019/04/14/19155eb74d8d1d2a76fc88956017d70a/',0,'oembed_cache','',0),(879,1,'2019-04-14 18:40:18','2019-04-14 18:40:18','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n												<a href=\"\"><style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}</style></a>\n					 \n												<a href=\"\"><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></a>\n					<p><iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></p>\n												<a href=\"\">Accordion Title</a>\n					<p><a href=\"http://https://vimeo.com/313597238\">test</a></p>\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			06		\n			<h2>Testimonials.</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"526\" height=\"540\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1.jpg 526w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-team2-1-292x300.jpg 292w\" sizes=\"(max-width: 526px) 100vw, 526px\" />											\n		<p> 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. </p>		\n										<img width=\"334\" height=\"61\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature.png 334w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-testimonial-signature-300x55.png 300w\" sizes=\"(max-width: 334px) 100vw, 334px\" />											\n			<h6>Melina Albrecht</h6><p>Founder, TingTong</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-chart-up-1.png\" alt=\"\" /></figure><h3>12,458+</h3><p>Projects Completed</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-user-1.png\" alt=\"\" /></figure><h3>1,796+</h3><p>Satisfied Clients</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-heart-1.png\" alt=\"\" /></figure><h3>1,000+</h3><p>Positive Feedbacks</p>		\n			<figure><img width=\"50\" height=\"50\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-gift-1.png\" alt=\"\" /></figure><h3>1,500+</h3><p>Freebies Released</p>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"157e471417\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 18:40:18','2019-04-14 18:40:18','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(878,1,'2019-04-14 18:38:44','2019-04-14 18:38:44','{{unknown}}','','','publish','closed','closed','','890e65dc3d2240965211760b1f104f86','','','2019-04-14 18:38:44','2019-04-14 18:38:44','',0,'https://test.evergreenwellness.com/2019/04/14/890e65dc3d2240965211760b1f104f86/',0,'oembed_cache','',0),(880,1,'2019-04-14 18:48:58','2019-04-14 18:48:58','','bg-1024x878','','inherit','open','closed','','bg-1024x878','','','2019-04-14 18:48:58','2019-04-14 18:48:58','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/bg-1024x878.jpg',0,'attachment','image/jpeg',0),(881,1,'2019-04-14 18:49:08','2019-04-14 18:49:08','','wb3','','inherit','open','closed','','wb3','','','2019-04-14 18:49:08','2019-04-14 18:49:08','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/wb3.jpg',0,'attachment','image/jpeg',0),(882,1,'2019-04-14 18:49:18','2019-04-14 18:49:18','','papaver-rhoeas-2439186_1920-1024x683','','inherit','open','closed','','papaver-rhoeas-2439186_1920-1024x683','','','2019-04-14 18:49:18','2019-04-14 18:49:18','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/papaver-rhoeas-2439186_1920-1024x683.jpg',0,'attachment','image/jpeg',0),(896,1,'2019-04-14 21:02:17','2019-04-14 21:02:17','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1271\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-1024x678.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			04		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration\nPain relief with only one needle\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/cherry-blossoms-3327498_1920-o6c24s9mbtpga13igv634lvlk83e0lvrmu8mylbuzk.jpg\" title=\"cherry-blossoms-3327498_1920\" alt=\"cherry-blossoms-3327498_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1271\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-1024x678.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/cherry-blossom-4114044_1920-o6c2zkhc5huiiadrpo78ac81xid53r3av7e3rtop7k.jpg\" title=\"cherry-blossom-4114044_1920\" alt=\"cherry-blossom-4114044_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/water-lilies-3491870_1920-o6c20aldobk4t3mcoxa97qobdy898o1xom14ezzkps.jpg\" title=\"water-lilies-3491870_1920\" alt=\"water-lilies-3491870_1920\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"157e471417\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 21:02:17','2019-04-14 21:02:17','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(886,1,'2019-04-14 19:25:03','2019-04-14 19:25:03','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1271\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-1024x678.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"157e471417\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 19:25:03','2019-04-14 19:25:03','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(885,1,'2019-04-14 19:18:10','2019-04-14 19:18:10','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"#pricing\" role=\"button\">\n						our works\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						services\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1271\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-1024x678.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"157e471417\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 19:18:10','2019-04-14 19:18:10','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(884,1,'2019-04-14 19:14:41','2019-04-14 19:14:41','','rose-4102612_1920','','inherit','open','closed','','rose-4102612_1920','','','2019-04-14 19:14:41','2019-04-14 19:14:41','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920.jpg',0,'attachment','image/jpeg',0),(888,1,'2019-04-14 19:35:42','2019-04-14 19:35:42','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1271\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2536194_1920-1024x678.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			07		\n			<h2>Why Select Us?</h2>		\n			We understand your requirement and provide quality works.		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-business-growth-1.png\" alt=\"\" /></figure>Business<br>Growth		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"52\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-unlimited-revisions2.png\" alt=\"\" /></figure>Unlimited<br>Revisions		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-ultimate-perfection-1.png\" alt=\"\" /></figure>Ultimate<br>Perfection		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<figure><img width=\"57\" height=\"55\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-smart-experience1.png\" alt=\"\" /></figure>Smart<br>Experience		\n		<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.</p>		\n			<figure><img width=\"53\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-strict-deadline1.png\" alt=\"\" /></figure>Strict<br>Deadline		\n		<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.</p>		\n			<figure><img width=\"35\" height=\"59\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/neve-reputed-copmany1.png\" alt=\"\" /></figure>Reputed<br>Company		\n		<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.</p>		\n			<h4>Start your journey with us now</h4>		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			08		\n			<h2>Our Blog</h2>		\n			We understand your requirement and provide quality works.		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />											\n			<h3><br>Quid dubitas igitur mutare principia naturae</h3><p>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.</p>		\n			<!-- .obfx-grid-container --><!-- .obfx-grid -->		\n			<h3>Subscribe to Newsletter</h3>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-bf34e92\" id=\"content-form-bf34e92\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"35052a52a3\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"bf34e92\" />\n        <fieldset>\n            <label for=\"data[bf34e92][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[bf34e92][email]\" id=\"data[bf34e92][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-bf34e92\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-200bdcf1\" id=\"content-form-200bdcf1\"><input type=\"hidden\" id=\"_wpnonce_newsletter\" name=\"_wpnonce_newsletter\" value=\"157e471417\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"newsletter\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"200bdcf1\" />\n        <fieldset>\n            <label for=\"data[200bdcf1][email]\"\n				>\n				 *            </label>\n			                    <input type=\"text\" name=\"data[200bdcf1][email]\" id=\"data[200bdcf1][email]\"\n						required=\"required\"  placeholder=\"Enter your email\">\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-newsletter-200bdcf1\">\n	            Subscribe now                            </button>\n        </fieldset>\n		</form>		\n			9		\n			<h2>Get in Touch</h2>		\n			We understand your requirement and provide quality works.		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"4b80ae1e5e\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Your Subject\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][phone]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][phone]\" id=\"data[7d50d4d8][phone]\"\n						  placeholder=\"Project Budget\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6>Keep in touch</h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<h6>Here for you</h6><p>Call us 24/7. We are there for your support</p>		\n			<h6>About us</h6><p>Res enim fortasse verae, certe graves.</p>		\n			<h6>Where to find us</h6><p>42 Boulevard, California, number 23</p>		\n			<h6><a href=\"Alexis LLC UK.\">Keep in touch</a></h6>		\n    <a href=\"#\"><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-facebook.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-twitter.png\"></a>\n    <a href><img src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/11/neve-instagram.png\"></a>\n    <a href><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			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-14 19:35:42','2019-04-14 19:35:42','',837,'https://test.evergreenwellness.com/2019/04/14/837-revision-v1/',0,'revision','',0),(889,1,'2019-04-14 20:23:29','2019-04-14 20:23:29','04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />','a2','','publish','closed','closed','','a2','','','2019-04-14 20:23:29','2019-04-14 20:23:29','',0,'https://test.evergreenwellness.com/?elementor_library=a2',0,'elementor_library','',0),(890,1,'2019-04-14 20:23:29','2019-04-14 20:23:29','','a2','','inherit','closed','closed','','889-revision-v1','','','2019-04-14 20:23:29','2019-04-14 20:23:29','',889,'https://test.evergreenwellness.com/2019/04/14/889-revision-v1/',0,'revision','',0),(891,1,'2019-04-14 20:23:29','2019-04-14 20:23:29','04		\n			<h2>Neve in detail</h2>		\n			We understand your requirements and let you customize Neve however you wish:		\n			1		\n			<h4>Super fast</h4>		\n		<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-5-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			2		\n			<h4>Optimized for mobile</h4>		\n		<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>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-4-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			3		\n			<h4>Minimalist design</h4>		\n		<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.</p>		\n										<img width=\"540\" height=\"360\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6.jpg 540w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-6-300x200.jpg 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />											\n			4		\n			<h4>SEO-ready</h4>		\n		<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>		\n										<img width=\"1600\" height=\"1066\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1.jpg 1600w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2018/12/nv-1-930x620.jpg 930w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" />','a2','','inherit','closed','closed','','889-revision-v1','','','2019-04-14 20:23:29','2019-04-14 20:23:29','',889,'https://test.evergreenwellness.com/2019/04/14/889-revision-v1/',0,'revision','',0),(893,1,'2019-04-14 20:59:37','2019-04-14 20:59:37','05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>','a3','','publish','closed','closed','','a3','','','2019-04-14 20:59:37','2019-04-14 20:59:37','',0,'https://test.evergreenwellness.com/?elementor_library=a3',0,'elementor_library','',0),(894,1,'2019-04-14 20:59:37','2019-04-14 20:59:37','','a3','','inherit','closed','closed','','893-revision-v1','','','2019-04-14 20:59:37','2019-04-14 20:59:37','',893,'https://test.evergreenwellness.com/2019/04/14/893-revision-v1/',0,'revision','',0),(895,1,'2019-04-14 20:59:37','2019-04-14 20:59:37','05		\n			<h2>Pricing Table.</h2>		\n			We understand your requirement and provide quality works.		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>','a3','','inherit','closed','closed','','893-revision-v1','','','2019-04-14 20:59:37','2019-04-14 20:59:37','',893,'https://test.evergreenwellness.com/2019/04/14/893-revision-v1/',0,'revision','',0),(911,1,'2019-04-15 00:20:22','2019-04-15 00:20:22','','Contact','','trash','closed','closed','','contact__trashed','','','2019-04-18 23:33:34','2019-04-18 23:33:34','',0,'https://test.evergreenwellness.com/?page_id=911',0,'page','',0),(912,1,'2019-04-15 00:20:22','2019-04-15 00:20:22','','Contact','','inherit','closed','closed','','911-revision-v1','','','2019-04-15 00:20:22','2019-04-15 00:20:22','',911,'https://test.evergreenwellness.com/2019/04/15/911-revision-v1/',0,'revision','',0),(900,1,'2019-04-14 22:25:48','2019-04-14 22:25:48','','heather-4087961_1920','','inherit','open','closed','','heather-4087961_1920','','','2019-04-14 22:25:48','2019-04-14 22:25:48','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/heather-4087961_1920.jpg',0,'attachment','image/jpeg',0),(901,1,'2019-04-14 22:27:01','2019-04-14 22:27:01','','tulips-4096397_1920','','inherit','open','closed','','tulips-4096397_1920','','','2019-04-14 22:27:01','2019-04-14 22:27:01','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/tulips-4096397_1920.jpg',0,'attachment','image/jpeg',0),(902,1,'2019-04-14 22:30:53','2019-04-14 22:30:53','','nature-4110060_1920','','inherit','open','closed','','nature-4110060_1920','','','2019-04-14 22:30:53','2019-04-14 22:30:53','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/nature-4110060_1920.jpg',0,'attachment','image/jpeg',0),(909,1,'2019-04-15 00:12:34','2019-04-15 00:12:34','','Elementor #908','','inherit','closed','closed','','908-revision-v1','','','2019-04-15 00:12:34','2019-04-15 00:12:34','',908,'https://test.evergreenwellness.com/2019/04/15/908-revision-v1/',0,'revision','',0),(910,1,'2019-04-15 00:13:48','2019-04-15 00:13:48','','Shop','','inherit','closed','closed','','908-revision-v1','','','2019-04-15 00:13:48','2019-04-15 00:13:48','',908,'https://test.evergreenwellness.com/2019/04/15/908-revision-v1/',0,'revision','',0),(906,1,'2019-04-15 00:12:13','2019-04-15 00:12:13','','Blog','','inherit','closed','closed','','782-revision-v1','','','2019-04-15 00:12:13','2019-04-15 00:12:13','',782,'https://test.evergreenwellness.com/2019/04/15/782-revision-v1/',0,'revision','',0),(907,1,'2019-04-15 00:12:13','2019-04-15 00:12:13','','Blog','','inherit','closed','closed','','836-revision-v1','','','2019-04-15 00:12:13','2019-04-15 00:12:13','',836,'https://test.evergreenwellness.com/2019/04/15/836-revision-v1/',0,'revision','',0),(908,1,'2019-04-15 00:15:09','0000-00-00 00:00:00','','Shop','','draft','closed','closed','','','','','2019-04-15 00:15:09','2019-04-15 00:15:09','',0,'https://test.evergreenwellness.com/?page_id=908',0,'page','',0),(936,1,'2019-04-15 17:26:55','2019-04-15 17:26:55','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<ol><li>Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</li><li>The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"ec03550aae\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 17:26:55','2019-04-15 17:26:55','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(915,1,'2019-04-15 00:32:14','2019-04-15 00:32:14','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration\nPain relief with only one needle\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><a href=\"https://evergreenwellness.com/tcm-intro/\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a href=\"https://evergreenwellness.com/stroke-research/\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial​</a></p><p><a href=\"https://evergreenwellness.com/stroke/\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a href=\"https://evergreenwellness.com/heart/\">TCM and Heart Diseases</a></p><p><a href=\"https://evergreenwellness.com/infertility/\">Traditional Chinese Medicine and Infertility</a></p>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"fcefa19e31\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 00:32:14','2019-04-15 00:32:14','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(914,1,'2019-04-15 00:30:02','2019-04-15 00:30:02','','rose-3159554_1920','','inherit','open','closed','','rose-3159554_1920','','','2019-04-15 00:30:02','2019-04-15 00:30:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg',0,'attachment','image/jpeg',0),(1152,1,'2019-04-25 14:40:09','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-04-25 14:40:09','0000-00-00 00:00:00','',0,'https://test.evergreenwellness.com/?p=1152',0,'post','',0),(919,1,'2019-04-15 15:08:35','2019-04-15 15:08:35','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><a href=\"https://evergreenwellness.com/tcm-intro/\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a href=\"https://evergreenwellness.com/stroke-research/\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial​</a></p><p><a href=\"https://evergreenwellness.com/stroke/\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a href=\"https://evergreenwellness.com/heart/\">TCM and Heart Diseases</a></p><p><a href=\"https://evergreenwellness.com/infertility/\">Traditional Chinese Medicine and Infertility</a></p>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"ec03550aae\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 15:08:35','2019-04-15 15:08:35','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(921,1,'2019-04-15 16:52:09','2019-04-15 16:52:09','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Introduction to Traditional Chinese Medicine <br> \nHolistic Concept, Dynamic View and Natural Therapies</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>\nIntroduction to Traditional Chinese Medicine <br> <br>\nHolistic Concept, Dynamic View and Natural Therapies</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>I. The Holistic Concept</p><p>In TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.</p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.  The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.</p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.  TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g. <em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. — </em>As stated in<em> Plain Questions, </em>a Chinese medicine book published about 2000 years ago.<em>  </em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.</p><p><strong>II. Dynamic View</strong></p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.  <strong>As a pathological generalization of disease in its certain stage which is called <u>syndromes</u> in TCM. <u>Syndromes</u> reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.  For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.</p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.</p><p>The reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.</p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.</p><p> From the example mentioned above, the TCM physician may provide <em>the same treatment for different diseases</em> such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em> is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.</p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).</p><p><strong>III. Natural Therapies</strong></p><p> TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).</p><ol><li><strong>Acupuncture and Moxibustion</strong></li></ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.  Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.</p><ol start=\"2\"><li><strong>Herbal Medicine</strong></li></ol><p><strong> </strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.</p><ol start=\"3\"><li><strong>Tuina Anmo -Chinese Massage</strong></li></ol><p><strong> </strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><ol start=\"4\"><li><strong>Qigong</strong></li></ol><p><strong> </strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.</p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.</p><p> No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.</p><p> If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','TCM introduction','','publish','closed','closed','','tcm-introduction','','','2019-04-21 01:53:39','2019-04-21 01:53:39','',0,'https://test.evergreenwellness.com/?page_id=921',0,'page','',0),(922,1,'2019-04-15 16:48:04','2019-04-15 16:48:04','','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-15 16:48:04','2019-04-15 16:48:04','',921,'https://test.evergreenwellness.com/2019/04/15/921-revision-v1/',0,'revision','',0),(923,1,'2019-04-15 16:50:06','2019-04-15 16:50:06','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>','Top','','publish','closed','closed','','top','','','2019-04-15 16:50:06','2019-04-15 16:50:06','',0,'https://test.evergreenwellness.com/?elementor_library=top',0,'elementor_library','',0),(924,1,'2019-04-15 16:50:06','2019-04-15 16:50:06','','Top','','inherit','closed','closed','','923-revision-v1','','','2019-04-15 16:50:06','2019-04-15 16:50:06','',923,'https://test.evergreenwellness.com/2019/04/15/923-revision-v1/',0,'revision','',0),(925,1,'2019-04-15 16:50:06','2019-04-15 16:50:06','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>','Top','','inherit','closed','closed','','923-revision-v1','','','2019-04-15 16:50:06','2019-04-15 16:50:06','',923,'https://test.evergreenwellness.com/2019/04/15/923-revision-v1/',0,'revision','',0),(926,1,'2019-04-15 16:55:08','2019-04-15 16:55:08','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-15 16:55:08','2019-04-15 16:55:08','',921,'https://test.evergreenwellness.com/2019/04/15/921-revision-v1/',0,'revision','',0),(927,1,'2019-04-15 16:55:09','2019-04-15 16:55:09','<img src=\"https://test.evergreenwellness.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<section data-id=\"aa21ea5\" data-element_type=\"section\"><h1>Introduction to Traditional Chinese Medicine</h1></section><section data-id=\"5b8e218\" data-element_type=\"section\"><h2>Holistic Concept, Dynamic View and Natural Therapies</h2></section><section data-id=\"aed9a62\" data-element_type=\"section\"> </section><section data-id=\"decac64\" data-element_type=\"section\"><p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>I. The Holistic Concept</p><p>In TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.</p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.  The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.</p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.  TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g. <em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. — </em>As stated in<em> Plain Questions, </em>a Chinese medicine book published about 2000 years ago.<em>  </em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.</p><p><strong>II. Dynamic View</strong></p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.  <strong>As a pathological generalization of disease in its certain stage which is called <u>syndromes</u> in TCM. <u>Syndromes</u> reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.  For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.</p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.</p><p>The reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.</p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.</p><p> From the example mentioned above, the TCM physician may provide <em>the same treatment for different diseases</em> such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em> is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.</p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).</p><p><strong>III. Natural Therapies</strong></p><p> TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).</p><ol><li><strong>Acupuncture and Moxibustion</strong></li></ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.  Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.</p><ol start=\"2\"><li><strong>Herbal Medicine</strong></li></ol><p><strong> </strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.</p><ol start=\"3\"><li><strong>Tuina Anmo -Chinese Massage</strong></li></ol><p><strong> </strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><ol start=\"4\"><li><strong>Qigong</strong></li></ol><p><strong> </strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.</p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.</p><p> No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.</p><p> If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.</p></section>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-15 16:55:09','2019-04-15 16:55:09','',921,'https://test.evergreenwellness.com/2019/04/15/921-revision-v1/',0,'revision','',0),(928,1,'2019-04-15 16:57:19','2019-04-15 16:57:19','<img src=\"https://test.evergreenwellness.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\">\n<section data-id=\"aa21ea5\" data-element_type=\"section\">\n<h1>Introduction to Traditional Chinese Medicine</h1>\n</section>\n<section data-id=\"5b8e218\" data-element_type=\"section\">\n<h2>Holistic Concept, Dynamic View and Natural Therapies</h2>\n</section>\n<section data-id=\"aed9a62\" data-element_type=\"section\">&nbsp;</section>\n<section data-id=\"decac64\" data-element_type=\"section\">Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.\n\nI. The Holistic Concept\n\nIn TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.\n\nThe body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.&nbsp; The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.\n\nThere is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.&nbsp; TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g.&nbsp;<em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. —&nbsp;</em>As stated in<em>&nbsp;Plain Questions,&nbsp;</em>a Chinese medicine book published about 2000 years ago.<em>&nbsp;&nbsp;</em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.\n\n<strong>II. Dynamic View</strong>\n\nTCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.&nbsp;&nbsp;<strong>As a pathological generalization of disease in its certain stage which is called&nbsp;<u>syndromes</u>&nbsp;in TCM.&nbsp;<u>Syndromes</u>&nbsp;reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.&nbsp; For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.\n\nIn the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.\n\nThe reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.\n\nAt this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.\n\n&nbsp;From the example mentioned above, the TCM physician may provide&nbsp;<em>the same treatment for different diseases</em>&nbsp;such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em>&nbsp;is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.\n\nAs with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).\n\n<strong>III. Natural Therapies</strong>\n\n&nbsp;TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).\n<ol>\n 	<li><strong>Acupuncture and Moxibustion</strong></li>\n</ol>\nIn acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.\n\nMoxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly&nbsp;<em>moxa-wool</em>&nbsp;in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.\n\nIn 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.&nbsp; Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.\n<ol start=\"2\">\n 	<li><strong>Herbal Medicine</strong></li>\n</ol>\n<strong>&nbsp;</strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.\n<ol start=\"3\">\n 	<li><strong>Tuina Anmo -Chinese Massage</strong></li>\n</ol>\n<strong>&nbsp;</strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.\n<ol start=\"4\">\n 	<li><strong>Qigong</strong></li>\n</ol>\n<strong>&nbsp;</strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.\n\nBesides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.\n\n&nbsp;No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.\n\n&nbsp;If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.\n\n</section>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-15 16:57:19','2019-04-15 16:57:19','',921,'https://test.evergreenwellness.com/2019/04/15/921-revision-v1/',0,'revision','',0),(929,1,'2019-04-15 16:59:17','2019-04-15 16:59:17','','wild-flowers-571940_1920','','inherit','open','closed','','wild-flowers-571940_1920','','','2019-04-15 16:59:17','2019-04-15 16:59:17','',921,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920.jpg',0,'attachment','image/jpeg',0),(930,1,'2019-04-15 17:05:07','2019-04-15 17:05:07','<img width=\"750\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-1024x453.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-1024x453.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-300x133.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-768x340.jpg 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>\nIntroduction to Traditional Chinese Medicine <br>\nHolistic Concept, Dynamic View and Natural Therapies</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>I. The Holistic Concept</p><p>In TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.</p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.  The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.</p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.  TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g. <em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. — </em>As stated in<em> Plain Questions, </em>a Chinese medicine book published about 2000 years ago.<em>  </em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.</p><p><strong>II. Dynamic View</strong></p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.  <strong>As a pathological generalization of disease in its certain stage which is called <u>syndromes</u> in TCM. <u>Syndromes</u> reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.  For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.</p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.</p><p>The reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.</p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.</p><p> From the example mentioned above, the TCM physician may provide <em>the same treatment for different diseases</em> such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em> is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.</p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).</p><p><strong>III. Natural Therapies</strong></p><p> TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).</p><ol><li><strong>Acupuncture and Moxibustion</strong></li></ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.  Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.</p><ol start=\"2\"><li><strong>Herbal Medicine</strong></li></ol><p><strong> </strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.</p><ol start=\"3\"><li><strong>Tuina Anmo -Chinese Massage</strong></li></ol><p><strong> </strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><ol start=\"4\"><li><strong>Qigong</strong></li></ol><p><strong> </strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.</p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.</p><p> No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.</p><p> If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.</p>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-15 17:05:07','2019-04-15 17:05:07','',921,'https://test.evergreenwellness.com/2019/04/15/921-revision-v1/',0,'revision','',0),(932,1,'2019-04-15 17:10:55','2019-04-15 17:10:55','<img width=\"750\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-1024x453.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-1024x453.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-300x133.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-768x340.jpg 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>\nIntroduction to Traditional Chinese Medicine <br>\nHolistic Concept, Dynamic View and Natural Therapies</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>I. The Holistic Concept</p><p>In TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.</p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.  The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.</p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.  TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g. <em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. — </em>As stated in<em> Plain Questions, </em>a Chinese medicine book published about 2000 years ago.<em>  </em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.</p><p><strong>II. Dynamic View</strong></p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.  <strong>As a pathological generalization of disease in its certain stage which is called <u>syndromes</u> in TCM. <u>Syndromes</u> reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.  For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.</p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.</p><p>The reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.</p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.</p><p> From the example mentioned above, the TCM physician may provide <em>the same treatment for different diseases</em> such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em> is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.</p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).</p><p><strong>III. Natural Therapies</strong></p><p> TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).</p><ol><li><strong>Acupuncture and Moxibustion</strong></li></ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.  Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.</p><ol start=\"2\"><li><strong>Herbal Medicine</strong></li></ol><p><strong> </strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.</p><ol start=\"3\"><li><strong>Tuina Anmo -Chinese Massage</strong></li></ol><p><strong> </strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><ol start=\"4\"><li><strong>Qigong</strong></li></ol><p><strong> </strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.</p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.</p><p> No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.</p><p> If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.</p>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-15 17:10:55','2019-04-15 17:10:55','',921,'https://test.evergreenwellness.com/2019/04/15/921-revision-v1/',0,'revision','',0),(933,1,'2019-04-15 17:12:04','2019-04-15 17:12:04','<img width=\"750\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-1024x453.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-1024x453.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-300x133.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-768x340.jpg 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>\nIntroduction to Traditional Chinese Medicine <br>\nHolistic Concept, Dynamic View and Natural Therapies</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>I. The Holistic Concept</p><p>In TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.</p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.  The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.</p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.  TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g. <em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. — </em>As stated in<em> Plain Questions, </em>a Chinese medicine book published about 2000 years ago.<em>  </em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.</p><p><strong>II. Dynamic View</strong></p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.  <strong>As a pathological generalization of disease in its certain stage which is called <u>syndromes</u> in TCM. <u>Syndromes</u> reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.  For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.</p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.</p><p>The reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.</p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.</p><p> From the example mentioned above, the TCM physician may provide <em>the same treatment for different diseases</em> such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em> is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.</p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).</p><p><strong>III. Natural Therapies</strong></p><p> TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).</p><ol><li><strong>Acupuncture and Moxibustion</strong></li></ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.  Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.</p><ol start=\"2\"><li><strong>Herbal Medicine</strong></li></ol><p><strong> </strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.</p><ol start=\"3\"><li><strong>Tuina Anmo -Chinese Massage</strong></li></ol><p><strong> </strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><ol start=\"4\"><li><strong>Qigong</strong></li></ol><p><strong> </strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.</p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.</p><p> No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.</p><p> If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.</p>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-15 17:12:04','2019-04-15 17:12:04','',921,'https://test.evergreenwellness.com/2019/04/15/921-revision-v1/',0,'revision','',0),(934,1,'2019-04-15 17:18:24','2019-04-15 17:18:24','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><a href=\"https://evergreenwellness.com/tcm-intro/\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a href=\"https://evergreenwellness.com/stroke-research/\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial​</a></p><p><a href=\"https://evergreenwellness.com/stroke/\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a href=\"https://evergreenwellness.com/heart/\">TCM and Heart Diseases</a></p><p><a href=\"https://evergreenwellness.com/infertility/\">Traditional Chinese Medicine and Infertility</a></p>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"ec03550aae\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 17:18:24','2019-04-15 17:18:24','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(935,1,'2019-04-15 17:21:35','2019-04-15 17:21:35',' ','','','publish','closed','closed','','935','','','2019-04-15 17:21:35','2019-04-15 17:21:35','',0,'https://test.evergreenwellness.com/?p=935',1,'nav_menu_item','',0),(937,1,'2019-04-15 17:27:39','2019-04-15 17:27:39','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<ol><li>Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</li><li>The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"ec03550aae\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 17:27:39','2019-04-15 17:27:39','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(938,1,'2019-04-15 17:30:46','2019-04-15 17:30:46','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"ec03550aae\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 17:30:46','2019-04-15 17:30:46','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(939,1,'2019-04-15 17:39:26','2019-04-15 17:39:26','','lotus-1205631_1920','','inherit','open','closed','','lotus-1205631_1920','','','2019-04-15 17:39:26','2019-04-15 17:39:26','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/lotus-1205631_1920.jpg',0,'attachment','image/jpeg',0),(940,1,'2019-04-15 17:39:49','2019-04-15 17:39:49','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"ec03550aae\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 17:39:49','2019-04-15 17:39:49','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(941,1,'2019-04-15 18:15:21','2019-04-15 18:15:21','','lotus-978659_1920','','inherit','open','closed','','lotus-978659_1920','','','2019-04-15 18:15:21','2019-04-15 18:15:21','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/lotus-978659_1920.jpg',0,'attachment','image/jpeg',0),(945,1,'2019-04-15 18:20:49','2019-04-15 18:20:49','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"ec03550aae\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 18:20:49','2019-04-15 18:20:49','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(943,1,'2019-04-15 18:17:26','2019-04-15 18:17:26','','water-lily-2334209_1920','','inherit','open','closed','','water-lily-2334209_1920','','','2019-04-15 18:17:26','2019-04-15 18:17:26','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2334209_1920.jpg',0,'attachment','image/jpeg',0),(944,1,'2019-04-15 18:20:08','2019-04-15 18:20:08','','rose-3802424_1920','','inherit','open','closed','','rose-3802424_1920','','','2019-04-15 18:20:08','2019-04-15 18:20:08','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3802424_1920.jpg',0,'attachment','image/jpeg',0),(946,1,'2019-04-15 18:29:10','2019-04-15 18:29:10','','landscape-967630_1920','','inherit','open','closed','','landscape-967630_1920','','','2019-04-15 18:29:10','2019-04-15 18:29:10','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/landscape-967630_1920.jpg',0,'attachment','image/jpeg',0),(948,1,'2019-04-15 19:35:32','2019-04-15 19:35:32','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/orchid-4066137_1920-o6c42u6nmhr4m81evpj9wj4r3j6hf4t519kyc7h054.jpg\" title=\"orchid-4066137_1920\" alt=\"orchid-4066137_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"ec03550aae\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 19:35:32','2019-04-15 19:35:32','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(949,1,'2019-04-15 21:43:16','2019-04-15 21:43:16','','white-birch-1757345_1920','','inherit','open','closed','','white-birch-1757345_1920','','','2019-04-15 21:43:16','2019-04-15 21:43:16','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/white-birch-1757345_1920.jpg',0,'attachment','image/jpeg',0),(950,1,'2019-04-15 21:44:16','2019-04-15 21:44:16','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/white-birch-1757345_1920-o6fcxoqz14mmjap467tpu1yan6luhtooopz37ggna8.jpg\" title=\"white-birch-1757345_1920\" alt=\"white-birch-1757345_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-4102612_1920-o6dft0c495nfrnlohu2upcstxm5xqx0atq76xdwtk0.jpg\" title=\"rose-4102612_1920\" alt=\"rose-4102612_1920\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/rose-165819_1920-o6ddly4tetf78efy5nsizb136vuibf52mesxrj4www.jpg\" title=\"rose-165819_1920\" alt=\"rose-165819_1920\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/red-roses-4232_1920-o6ddmvz08upiud2so2f3h2hokr7q0iver2af1hqqow.jpg\" title=\"red-roses-4232_1920\" alt=\"red-roses-4232_1920\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"ec03550aae\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 21:44:16','2019-04-15 21:44:16','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(951,1,'2019-04-15 21:46:04','2019-04-15 21:46:04','','park-2625002_1280','','inherit','open','closed','','park-2625002_1280','','','2019-04-15 21:46:04','2019-04-15 21:46:04','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280.jpg',0,'attachment','image/jpeg',0),(955,1,'2019-04-15 21:52:36','2019-04-15 21:52:36','','smoothies-3809509_1280','','inherit','open','closed','','smoothies-3809509_1280','','','2019-04-15 21:52:36','2019-04-15 21:52:36','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/smoothies-3809509_1280.jpg',0,'attachment','image/jpeg',0),(958,1,'2019-04-15 21:59:47','2019-04-15 21:59:47','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/white-birch-1757345_1920-o6fcxoqz14mmjap467tpu1yan6luhtooopz37ggna8.jpg\" title=\"white-birch-1757345_1920\" alt=\"white-birch-1757345_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1280\" height=\"853\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280.jpg 1280w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280-930x620.jpg 930w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/smoothies-3809509_1280-o6fdcb4je6h9lxf3zef6n5mz6lpw7txnbwsl588skg.jpg\" title=\"smoothies-3809509_1280\" alt=\"smoothies-3809509_1280\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1280\" height=\"853\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280.jpg 1280w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280-930x620.jpg 930w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/fruit-basket-1841317_1280-o6fdfgv0d4symqtwj9l1iuxr285b37h63jqc7pk5nk.jpg\" title=\"fruit-basket-1841317_1280\" alt=\"fruit-basket-1841317_1280\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/lemon-906141_1280-o6fd9ijt2wnl3nh7aoy3qd0nmdhmc7uda2zmsmdx28.jpg\" title=\"lemon-906141_1280\" alt=\"lemon-906141_1280\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"1920\" height=\"1234\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-300x193.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-768x494.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/pink-2254970_1920-1024x658.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"ec03550aae\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 21:59:47','2019-04-15 21:59:47','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(956,1,'2019-04-15 21:54:37','2019-04-15 21:54:37','','fruit-basket-1841317_1280','','inherit','open','closed','','fruit-basket-1841317_1280','','','2019-04-15 21:54:37','2019-04-15 21:54:37','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/fruit-basket-1841317_1280.jpg',0,'attachment','image/jpeg',0),(953,1,'2019-04-15 21:48:27','2019-04-15 21:48:27','','swan-644413_1920','','inherit','open','closed','','swan-644413_1920','','','2019-04-15 21:48:27','2019-04-15 21:48:27','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/swan-644413_1920.jpg',0,'attachment','image/jpeg',0),(954,1,'2019-04-15 21:50:49','2019-04-15 21:50:49','','lemon-906141_1280','','inherit','open','closed','','lemon-906141_1280','','','2019-04-15 21:50:49','2019-04-15 21:50:49','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/lemon-906141_1280.jpg',0,'attachment','image/jpeg',0),(957,1,'2019-04-15 21:57:05','2019-04-15 21:57:05','','mushrooms-2803566_1280','','inherit','open','closed','','mushrooms-2803566_1280','','','2019-04-15 21:57:05','2019-04-15 21:57:05','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280.jpg',0,'attachment','image/jpeg',0),(959,1,'2019-04-15 22:04:49','2019-04-15 22:04:49','','child-316510_1280','','inherit','open','closed','','child-316510_1280','','','2019-04-15 22:04:49','2019-04-15 22:04:49','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316510_1280.jpg',0,'attachment','image/jpeg',0),(962,1,'2019-04-15 22:07:45','2019-04-15 22:07:45','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/white-birch-1757345_1920-o6fcxoqz14mmjap467tpu1yan6luhtooopz37ggna8.jpg\" title=\"white-birch-1757345_1920\" alt=\"white-birch-1757345_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1280\" height=\"853\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280.jpg 1280w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/park-2625002_1280-930x620.jpg 930w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/smoothies-3809509_1280-o6fdcb4je6h9lxf3zef6n5mz6lpw7txnbwsl588skg.jpg\" title=\"smoothies-3809509_1280\" alt=\"smoothies-3809509_1280\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1280\" height=\"853\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280.jpg 1280w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/mushrooms-2803566_1280-930x620.jpg 930w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/fruit-basket-1841317_1280-o6fdfgv0d4symqtwj9l1iuxr285b37h63jqc7pk5nk.jpg\" title=\"fruit-basket-1841317_1280\" alt=\"fruit-basket-1841317_1280\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/lemon-906141_1280-o6fd9ijt2wnl3nh7aoy3qd0nmdhmc7uda2zmsmdx28.jpg\" title=\"lemon-906141_1280\" alt=\"lemon-906141_1280\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"ec03550aae\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-15 22:07:45','2019-04-15 22:07:45','',837,'https://test.evergreenwellness.com/2019/04/15/837-revision-v1/',0,'revision','',0),(961,1,'2019-04-15 22:07:09','2019-04-15 22:07:09','','child-316511_1280','','inherit','open','closed','','child-316511_1280','','','2019-04-15 22:07:09','2019-04-15 22:07:09','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg',0,'attachment','image/jpeg',0),(964,1,'2019-04-16 18:14:55','2019-04-16 18:14:55','','smile-1491429_1280','','inherit','open','closed','','smile-1491429_1280','','','2019-04-16 18:14:55','2019-04-16 18:14:55','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/smile-1491429_1280.png',0,'attachment','image/png',0),(969,1,'2019-04-16 22:11:31','2019-04-16 22:11:31','','architecture-1048092_1920','','inherit','open','closed','','architecture-1048092_1920','','','2019-04-16 22:11:31','2019-04-16 22:11:31','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/architecture-1048092_1920.jpg',0,'attachment','image/jpeg',0),(965,1,'2019-04-16 21:59:19','2019-04-16 21:59:19','','wellness-955796_1920','','inherit','open','closed','','wellness-955796_1920','','','2019-04-16 21:59:19','2019-04-16 21:59:19','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/wellness-955796_1920.jpg',0,'attachment','image/jpeg',0),(968,1,'2019-04-16 22:10:11','2019-04-16 22:10:11','','architecture-3357028_1920','','inherit','open','closed','','architecture-3357028_1920','','','2019-04-16 22:10:11','2019-04-16 22:10:11','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/architecture-3357028_1920.jpg',0,'attachment','image/jpeg',0),(966,1,'2019-04-16 22:05:10','2019-04-16 22:05:10','','flower-1307578_1920','','inherit','open','closed','','flower-1307578_1920','','','2019-04-16 22:05:10','2019-04-16 22:05:10','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/flower-1307578_1920.jpg',0,'attachment','image/jpeg',0),(967,1,'2019-04-16 22:08:32','2019-04-16 22:08:32','','house-1353389_1920','','inherit','open','closed','','house-1353389_1920','','','2019-04-16 22:08:32','2019-04-16 22:08:32','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/house-1353389_1920.jpg',0,'attachment','image/jpeg',0),(971,1,'2019-04-16 22:18:30','2019-04-16 22:18:30','','bridge-2887353_1280','','inherit','open','closed','','bridge-2887353_1280','','','2019-04-16 22:18:30','2019-04-16 22:18:30','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/bridge-2887353_1280.jpg',0,'attachment','image/jpeg',0),(970,1,'2019-04-16 22:13:22','2019-04-16 22:13:22','','reichstag-4148_1920','','inherit','open','closed','','reichstag-4148_1920','','','2019-04-16 22:13:22','2019-04-16 22:13:22','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/reichstag-4148_1920.jpg',0,'attachment','image/jpeg',0),(972,1,'2019-04-16 22:20:11','2019-04-16 22:20:11','','holiday-house-177401_1280','','inherit','open','closed','','holiday-house-177401_1280','','','2019-04-16 22:20:11','2019-04-16 22:20:11','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/holiday-house-177401_1280.jpg',0,'attachment','image/jpeg',0),(973,1,'2019-04-16 22:21:36','2019-04-16 22:21:36','','boat-house-192990_1280','','inherit','open','closed','','boat-house-192990_1280','','','2019-04-16 22:21:36','2019-04-16 22:21:36','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280.jpg',0,'attachment','image/jpeg',0),(975,1,'2019-04-16 22:26:13','2019-04-16 22:26:13','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/door-215349_1280-o6h5g3hgzro0k3894gd3yalkacxdn6owyee5t4gpsw.jpg\" title=\"door-215349_1280\" alt=\"door-215349_1280\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1280\" height=\"853\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280.jpg 1280w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280-930x620.jpg 930w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/holiday-house-177401_1280-o6h57ff1yrsthjtjqpgyyhcj2fninoa13hsyh9bf6o.jpg\" title=\"holiday-house-177401_1280\" alt=\"holiday-house-177401_1280\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/bridge-2887353_1280-o6h54shcsi6uwxng52fngnaz2ing28t52fwx0b86n4.jpg\" title=\"bridge-2887353_1280\" alt=\"bridge-2887353_1280\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"a466530caf\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-16 22:26:13','2019-04-16 22:26:13','',837,'https://test.evergreenwellness.com/2019/04/16/837-revision-v1/',0,'revision','',0),(974,1,'2019-04-16 22:25:43','2019-04-16 22:25:43','','door-215349_1280','','inherit','open','closed','','door-215349_1280','','','2019-04-16 22:25:43','2019-04-16 22:25:43','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/door-215349_1280.jpg',0,'attachment','image/jpeg',0),(979,1,'2019-04-17 00:20:35','2019-04-17 00:20:35','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1280\" height=\"960\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/door-215349_1280.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/door-215349_1280.jpg 1280w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/door-215349_1280-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/door-215349_1280-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/door-215349_1280-1024x768.jpg 1024w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1280\" height=\"853\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280.jpg 1280w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280-1024x682.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/boat-house-192990_1280-930x620.jpg 930w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1280\" height=\"960\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/holiday-house-177401_1280.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/holiday-house-177401_1280.jpg 1280w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/holiday-house-177401_1280-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/holiday-house-177401_1280-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/holiday-house-177401_1280-1024x768.jpg 1024w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/castle-sponeck-2578523_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/castle-sponeck-2578523_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/castle-sponeck-2578523_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/castle-sponeck-2578523_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/castle-sponeck-2578523_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/castle-sponeck-2578523_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"eda1b1f19a\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-17 00:20:35','2019-04-17 00:20:35','',837,'https://test.evergreenwellness.com/2019/04/17/837-revision-v1/',0,'revision','',0),(977,1,'2019-04-17 00:17:05','2019-04-17 00:17:05','','horses-945388_1920','','inherit','open','closed','','horses-945388_1920','','','2019-04-17 00:17:05','2019-04-17 00:17:05','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/horses-945388_1920.jpg',0,'attachment','image/jpeg',0),(978,1,'2019-04-17 00:19:10','2019-04-17 00:19:10','','castle-sponeck-2578523_1920','','inherit','open','closed','','castle-sponeck-2578523_1920','','','2019-04-17 00:19:10','2019-04-17 00:19:10','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/castle-sponeck-2578523_1920.jpg',0,'attachment','image/jpeg',0),(980,1,'2019-04-18 12:35:45','2019-04-18 12:35:45','','chinese-675124_1920','','inherit','open','closed','','chinese-675124_1920','','','2019-04-18 12:35:45','2019-04-18 12:35:45','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg',0,'attachment','image/jpeg',0),(987,1,'2019-04-18 16:39:47','2019-04-18 16:39:47','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-18 16:39:47','2019-04-18 16:39:47','',837,'https://test.evergreenwellness.com/2019/04/18/837-revision-v1/',0,'revision','',0),(986,1,'2019-04-18 12:47:29','2019-04-18 12:47:29','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<form action=\"https://test.evergreenwellness.com/wp-admin/admin-post.php\" method=\"post\" name=\"content-form-7d50d4d8\" id=\"content-form-7d50d4d8\"><input type=\"hidden\" id=\"_wpnonce_contact\" name=\"_wpnonce_contact\" value=\"dbcf32510c\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"content_form_submit\" /><input type=\"hidden\" name=\"form-type\" value=\"contact\" /><input type=\"hidden\" name=\"form-builder\" value=\"elementor\" /><input type=\"hidden\" name=\"post-id\" value=\"837\" /><input type=\"hidden\" name=\"form-id\" value=\"7d50d4d8\" />\n        <fieldset>\n            <label for=\"data[7d50d4d8][name]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][name]\" id=\"data[7d50d4d8][name]\"\n						  placeholder=\"Your Name\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][email]\"\n				>\n				            </label>\n			                    <input type=\"text\" name=\"data[7d50d4d8][email]\" id=\"data[7d50d4d8][email]\"\n						  placeholder=\"Your Email\">\n					        </fieldset>\n        <fieldset>\n            <label for=\"data[7d50d4d8][message]\"\n				>\n				            </label>\n			                    <textarea name=\"data[7d50d4d8][message]\" id=\"data[7d50d4d8][message]\"\n												                              placeholder=\"Your message\"\n                              cols=\"30\" rows=\"5\"></textarea>\n					        </fieldset>\n		        <fieldset>\n            <button type=\"submit\" name=\"submit\" value=\"submit-contact-7d50d4d8\">\n	            send message                            </button>\n        </fieldset>\n		</form>		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160<br>\nWichita, KS 67207</p>		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-18 12:47:29','2019-04-18 12:47:29','',837,'https://test.evergreenwellness.com/2019/04/18/837-revision-v1/',0,'revision','',0),(982,1,'2019-04-18 12:37:36','2019-04-18 12:37:36','','chinese-675125_1920','','inherit','open','closed','','chinese-675125_1920','','','2019-04-18 12:37:36','2019-04-18 12:37:36','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg',0,'attachment','image/jpeg',0),(983,1,'2019-04-18 12:39:05','2019-04-18 12:39:05','','chinese-675123_1920','','inherit','open','closed','','chinese-675123_1920','','','2019-04-18 12:39:05','2019-04-18 12:39:05','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg',0,'attachment','image/jpeg',0),(985,1,'2019-04-18 12:45:31','2019-04-18 12:45:31','','chinese-676653_1920','','inherit','open','closed','','chinese-676653_1920','','','2019-04-18 12:45:31','2019-04-18 12:45:31','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg',0,'attachment','image/jpeg',0),(984,1,'2019-04-18 12:42:31','2019-04-18 12:42:31','','chinese-996990_1280','','inherit','open','closed','','chinese-996990_1280','','','2019-04-18 12:42:31','2019-04-18 12:42:31','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-996990_1280.jpg',0,'attachment','image/jpeg',0),(988,1,'2019-04-18 16:40:56','2019-04-18 16:40:56','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]\nEvergreen Wellness Center \"[your-subject]\"\nEvergreen Wellness Center <wordpress@test.evergreenwellness.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Evergreen Wellness Center (https://test.evergreenwellness.com)\nadmin@evergreenwellness.com\nReply-To: [your-email]\n\n0\n0\n\nEvergreen Wellness Center \"[your-subject]\"\nEvergreen Wellness Center <wordpress@test.evergreenwellness.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Evergreen Wellness Center (https://test.evergreenwellness.com)\n[your-email]\nReply-To: admin@evergreenwellness.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2019-04-18 16:40:56','2019-04-18 16:40:56','',0,'https://test.evergreenwellness.com/?post_type=wpcf7_contact_form&p=988',0,'wpcf7_contact_form','',0),(991,1,'2019-04-18 22:23:06','2019-04-18 22:23:06','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-18 22:23:06','2019-04-18 22:23:06','',837,'https://test.evergreenwellness.com/2019/04/18/837-revision-v1/',0,'revision','',0),(990,1,'2019-04-18 17:07:51','2019-04-18 17:07:51','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-4102612_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1280\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-300x200.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-768x512.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-1024x683.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/rose-3159554_1920-930x620.jpg 930w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-18 17:07:51','2019-04-18 17:07:51','',837,'https://test.evergreenwellness.com/2019/04/18/837-revision-v1/',0,'revision','',0),(992,1,'2019-04-18 23:00:33','2019-04-18 23:00:33','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-18 23:00:33','2019-04-18 23:00:33','',837,'https://test.evergreenwellness.com/2019/04/18/837-revision-v1/',0,'revision','',0),(1016,1,'2019-04-20 00:29:09','2019-04-20 00:29:09','<h1>We offer better Traditional Chinese Medicine services</h1>\n<h6>Acupuncture and Chinese herbal Medicine</h6>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>\n<a href=\"#more-features\" role=\"button\">\nContact us\n</a>\n<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\">\n01\n<h2>about us.</h2>\n<strong>Our Mission Statement:&nbsp;</strong>\n\nThe Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.\n\n&nbsp;Evergreen 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.\n\n02\n<h2>Our Services</h2>\nPromotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\"></figure>\n<h5>Acupuncture</h5>\nAn Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\"></figure>\n<h5>Herbal Medicine</h5>\nHerbal medicine can be used to treat and also prevent various health problems.\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\"></figure>\n<h5>Oriental Bodywork</h5>\nIt is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\"></figure>\n<h5>Qigong</h5>\nQigong harmonizes body movement, breath and mental concentration for your well-being.\n<h3>Explore Our Awesomeness</h3>\nhttps://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU\n03\n<h2>Our team.</h2>\nexperienced professionals and licensed clinicians\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\"></figure>\n<h6>Qizhi Gao</h6>\nD.O.M., Dipl. OM (NCCAOM)\n\nDr. 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).\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\"></figure>\n<h6>Carrie Hao X. Shen</h6>\nLic. Acupuncturist\n\nCarrie 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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.\n\n04\n<h2>Testimonials.</h2>\nHear what our patient says\n<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n\n<strong>From Google Review</strong>\n\nWow!!!! 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’m 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.&nbsp;\nThank you Doctor!!\n\n<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n<p style=\"font-weight: 300;\"><strong style=\"font-style: inherit; font-weight: 600;\">From Yelp Review</strong></p>\n<p style=\"font-weight: 300;\">Carrie ( Dr. Gao’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>\n			05\n<h2>Magic Needle show</h2>\nDr. Gao\'s Acupuncture Demonstration\nPain relief with only one needle\nJanuary 17, 2004 in Kansas City\n1\n<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>\nhttps://vimeo.com/313597399\n<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n2\n<h4>NeckPain</h4>\nhttps://vimeo.com/313597516\n<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n3\n<h4>Lupus pain</h4>\nhttps://vimeo.com/313597633\n<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n4\n<h4>Toe Pain</h4>\nhttps://vimeo.com/315338770\n<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n06\n<h2>Why Select Us?</h2>\nWe committed to provide quality patient-centered care,\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.\nPassionate - we care\nWell Trained - knowledgeable\nExperienced - years practice\n<h4>Do you need help?</h4>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>\n07\n<h2>Articles</h2>\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.\n<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<ol>\n 	<li>Q &amp; A on Traditional Chinese Medicine</li>\n 	<li><a href=\"https://test.evergreenwellness.com/tcm-introduction/\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></li>\n 	<li>The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial​</li>\n 	<li>Stroke Rehabilitation and Traditional Chinese Medicine</li>\n 	<li>TCM and Heart Diseases</li>\n 	<li>Traditional Chinese Medicine and Infertility</li>\n</ol>\n08\n<h2>Get in Touch</h2>\nNeed an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly\n<h6>Here for you</h6>\nCall us at 316-691-8811\n<h6>Where to find us</h6>\n1520 S. Webb Road, Suite 160\nWichita, KS 67207\n\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>\n<h2>Send us an email</h2>\n[contact-form-7 id=\"988\" title=\"Contact form 1\"]\n\n<style>\n/*Disable animations on table/mobile*/<br />\n@media only screen and (max-width : 768px) {<br />\n.animated, .animated.animated-slow {<br />\n    -webkit-animation-duration: 0s;<br />\n    animation-duration: 0s;<br />\n}<br />\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {<br />\n        animation-name: none;<br />\n    }<br />\n}<br />\n/*Fix flexbox IE11 width issue*/<br />\n@media only screen and (min-width : 991px) {<br />\n.nv-ie-width .elementor-column-wrap {<br />\n    min-width: 452px;<br />\n}<br />\n}<br />\n/*Video section - Remove link color on hover*/<br />\n    #alexis-video-section a:hover, #alexis-video-section a:focus {<br />\n        color: #fff;<br />\n    }<br />\n/*Pricing section - Fixes*/<br />\n@media only screen and (max-width: 1000px) and (min-width: 480px) {<br />\n    #alexis-pricing-column-width-3 {<br />\n        margin: 0 auto;<br />\n    }<br />\n}<br />\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {<br />\n    #alexis-pricing-column-width-1 .elementor-element-populated {<br />\n        margin: 0 0 0 -5px;<br />\n    }<br />\n    #alexis-pricing-column-width-2 .elementor-element-populated {<br />\n        margin: 0;<br />\n    }<br />\n    #alexis-pricing-column-width-3 .elementor-element-populated {<br />\n        margin: 0 0 0 5px;<br />\n    }<br />\n}<br />\n/*Blog section: fix for mobile*/<br />\n@media only screen and (max-width: 1000px) and (min-width: 480px) {<br />\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {<br />\n        margin: 0 auto;<br />\n    }<br />\n}<br />\n/*Center subscribe button on mobile*/<br />\n@media only screen and (max-width : 468px) {<br />\n    #nv-mobile-subscribe .content-form .submit-form {<br />\n        width: initial;<br />\n    }<br />\n}<br />\n/*Add space to contact form submit button*/<br />\n#nv-contact-form .content-form .submit-form {<br />\n    margin-top: 20px;<br />\n}<br />\n/*Center the Form succes/error notice*/<br />\n    #nv-contact-form .content-form-notice {<br />\n    margin: 0 auto;<br />\n}<br />\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 00:29:09','2019-04-20 00:29:09','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(994,1,'2019-04-18 23:30:09','2019-04-18 23:30:09','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li>TCM and Heart Diseases</li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-18 23:30:09','2019-04-18 23:30:09','',837,'https://test.evergreenwellness.com/2019/04/18/837-revision-v1/',0,'revision','',0),(995,1,'2019-04-18 23:33:49','2019-04-18 23:33:49','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','inherit','closed','closed','','785-revision-v1','','','2019-04-18 23:33:49','2019-04-18 23:33:49','',785,'https://test.evergreenwellness.com/2019/04/18/785-revision-v1/',0,'revision','',0),(996,1,'2019-04-18 23:34:48','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2019-04-18 23:34:48','0000-00-00 00:00:00','',0,'https://test.evergreenwellness.com/?page_id=996',0,'page','',0),(997,1,'2019-04-19 23:39:51','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2019-04-19 23:39:51','0000-00-00 00:00:00','',0,'https://test.evergreenwellness.com/?page_id=997',0,'page','',0);
INSERT INTO `wp9z_posts` VALUES (1008,1,'2019-04-20 00:07:04','2019-04-20 00:07:04','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>\nIntroduction to Traditional Chinese Medicine <br> <br>\nHolistic Concept, Dynamic View and Natural Therapies</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>I. The Holistic Concept</p><p>In TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.</p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.  The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.</p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.  TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g. <em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. — </em>As stated in<em> Plain Questions, </em>a Chinese medicine book published about 2000 years ago.<em>  </em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.</p><p><strong>II. Dynamic View</strong></p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.  <strong>As a pathological generalization of disease in its certain stage which is called <u>syndromes</u> in TCM. <u>Syndromes</u> reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.  For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.</p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.</p><p>The reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.</p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.</p><p> From the example mentioned above, the TCM physician may provide <em>the same treatment for different diseases</em> such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em> is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.</p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).</p><p><strong>III. Natural Therapies</strong></p><p> TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).</p><ol><li><strong>Acupuncture and Moxibustion</strong></li></ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.  Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.</p><ol start=\"2\"><li><strong>Herbal Medicine</strong></li></ol><p><strong> </strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.</p><ol start=\"3\"><li><strong>Tuina Anmo -Chinese Massage</strong></li></ol><p><strong> </strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><ol start=\"4\"><li><strong>Qigong</strong></li></ol><p><strong> </strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.</p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.</p><p> No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.</p><p> If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-20 00:07:04','2019-04-20 00:07:04','',921,'https://test.evergreenwellness.com/2019/04/20/921-revision-v1/',0,'revision','',0),(999,1,'2019-04-19 23:52:45','2019-04-19 23:52:45','<img width=\"750\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-1024x453.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-1024x453.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-300x133.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-768x340.jpg 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>\nIntroduction to Traditional Chinese Medicine <br>\nHolistic Concept, Dynamic View and Natural Therapies</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>I. The Holistic Concept</p><p>In TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.</p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.  The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.</p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.  TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g. <em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. — </em>As stated in<em> Plain Questions, </em>a Chinese medicine book published about 2000 years ago.<em>  </em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.</p><p><strong>II. Dynamic View</strong></p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.  <strong>As a pathological generalization of disease in its certain stage which is called <u>syndromes</u> in TCM. <u>Syndromes</u> reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.  For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.</p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.</p><p>The reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.</p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.</p><p> From the example mentioned above, the TCM physician may provide <em>the same treatment for different diseases</em> such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em> is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.</p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).</p><p><strong>III. Natural Therapies</strong></p><p> TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).</p><ol><li><strong>Acupuncture and Moxibustion</strong></li></ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.  Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.</p><ol start=\"2\"><li><strong>Herbal Medicine</strong></li></ol><p><strong> </strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.</p><ol start=\"3\"><li><strong>Tuina Anmo -Chinese Massage</strong></li></ol><p><strong> </strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><ol start=\"4\"><li><strong>Qigong</strong></li></ol><p><strong> </strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.</p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.</p><p> No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.</p><p> If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-19 23:52:45','2019-04-19 23:52:45','',921,'https://test.evergreenwellness.com/2019/04/19/921-revision-v1/',0,'revision','',0),(1000,1,'2019-04-19 23:53:35','2019-04-19 23:53:35','<img width=\"750\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-1024x453.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-1024x453.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-300x133.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/wild-flowers-571940_1920-768x340.jpg 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>\nIntroduction to Traditional Chinese Medicine <br> <br>\nHolistic Concept, Dynamic View and Natural Therapies</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>I. The Holistic Concept</p><p>In TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.</p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.  The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.</p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.  TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g. <em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. — </em>As stated in<em> Plain Questions, </em>a Chinese medicine book published about 2000 years ago.<em>  </em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.</p><p><strong>II. Dynamic View</strong></p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.  <strong>As a pathological generalization of disease in its certain stage which is called <u>syndromes</u> in TCM. <u>Syndromes</u> reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.  For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.</p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.</p><p>The reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.</p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.</p><p> From the example mentioned above, the TCM physician may provide <em>the same treatment for different diseases</em> such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em> is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.</p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).</p><p><strong>III. Natural Therapies</strong></p><p> TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).</p><ol><li><strong>Acupuncture and Moxibustion</strong></li></ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.  Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.</p><ol start=\"2\"><li><strong>Herbal Medicine</strong></li></ol><p><strong> </strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.</p><ol start=\"3\"><li><strong>Tuina Anmo -Chinese Massage</strong></li></ol><p><strong> </strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><ol start=\"4\"><li><strong>Qigong</strong></li></ol><p><strong> </strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.</p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.</p><p> No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.</p><p> If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-19 23:53:35','2019-04-19 23:53:35','',921,'https://test.evergreenwellness.com/2019/04/19/921-revision-v1/',0,'revision','',0),(1001,1,'2019-04-19 23:55:05','2019-04-19 23:55:05','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Q & A on Traditional Chinese Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Q & A on Traditional Chinese Medicine\n</h2>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy.</p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Q-A','','publish','closed','closed','','q-a','','','2019-04-21 01:38:44','2019-04-21 01:38:44','',0,'https://test.evergreenwellness.com/?page_id=1001',0,'page','',0),(1002,1,'2019-04-19 23:54:23','2019-04-19 23:54:23','','Elementor #1001','','inherit','closed','closed','','1001-revision-v1','','','2019-04-19 23:54:23','2019-04-19 23:54:23','',1001,'https://test.evergreenwellness.com/2019/04/19/1001-revision-v1/',0,'revision','',0),(1004,1,'2019-04-19 23:56:40','2019-04-19 23:56:40','<h1>We offer better Traditional Chinese Medicine services</h1>\n<h6>Acupuncture and Chinese herbal Medicine</h6>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>\n<a href=\"#more-features\" role=\"button\">\nContact us\n</a>','Q-A','','inherit','closed','closed','','1001-revision-v1','','','2019-04-19 23:56:40','2019-04-19 23:56:40','',1001,'https://test.evergreenwellness.com/2019/04/19/1001-revision-v1/',0,'revision','',0),(1003,1,'2019-04-19 23:55:33','2019-04-19 23:55:33','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>','Elementor #1001','','inherit','closed','closed','','1001-revision-v1','','','2019-04-19 23:55:33','2019-04-19 23:55:33','',1001,'https://test.evergreenwellness.com/2019/04/19/1001-revision-v1/',0,'revision','',0),(1006,1,'2019-04-20 00:00:04','2019-04-20 00:00:04','','road-1072823_1280','','inherit','open','closed','','road-1072823_1280','','','2019-04-20 00:00:04','2019-04-20 00:00:04','',1001,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/road-1072823_1280.jpg',0,'attachment','image/jpeg',0),(1009,1,'2019-04-20 00:08:14','2019-04-20 00:08:14','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Q & A on Traditional Chinese Medicine\n</h2>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy.</p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>','Q-A','','inherit','closed','closed','','1001-revision-v1','','','2019-04-20 00:08:14','2019-04-20 00:08:14','',1001,'https://test.evergreenwellness.com/2019/04/20/1001-revision-v1/',0,'revision','',0),(1010,1,'2019-04-20 00:09:36','2019-04-20 00:09:36','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Q & A on Traditional Chinese Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Q & A on Traditional Chinese Medicine\n</h2>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy.</p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>','Q-A','','inherit','closed','closed','','1001-revision-v1','','','2019-04-20 00:09:36','2019-04-20 00:09:36','',1001,'https://test.evergreenwellness.com/2019/04/20/1001-revision-v1/',0,'revision','',0),(1011,1,'2019-04-20 00:11:16','2019-04-20 00:11:16','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Introduction to Traditional Chinese Medicine <br> \nHolistic Concept, Dynamic View and Natural Therapies</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>\nIntroduction to Traditional Chinese Medicine <br> <br>\nHolistic Concept, Dynamic View and Natural Therapies</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>I. The Holistic Concept</p><p>In TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.</p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.  The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.</p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.  TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g. <em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. — </em>As stated in<em> Plain Questions, </em>a Chinese medicine book published about 2000 years ago.<em>  </em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.</p><p><strong>II. Dynamic View</strong></p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.  <strong>As a pathological generalization of disease in its certain stage which is called <u>syndromes</u> in TCM. <u>Syndromes</u> reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.  For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.</p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.</p><p>The reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.</p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.</p><p> From the example mentioned above, the TCM physician may provide <em>the same treatment for different diseases</em> such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em> is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.</p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).</p><p><strong>III. Natural Therapies</strong></p><p> TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).</p><ol><li><strong>Acupuncture and Moxibustion</strong></li></ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.  Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.</p><ol start=\"2\"><li><strong>Herbal Medicine</strong></li></ol><p><strong> </strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.</p><ol start=\"3\"><li><strong>Tuina Anmo -Chinese Massage</strong></li></ol><p><strong> </strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><ol start=\"4\"><li><strong>Qigong</strong></li></ol><p><strong> </strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.</p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.</p><p> No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.</p><p> If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-20 00:11:16','2019-04-20 00:11:16','',921,'https://test.evergreenwellness.com/2019/04/20/921-revision-v1/',0,'revision','',0),(1035,1,'2019-04-20 01:05:21','2019-04-20 01:05:21','<h1>We offer better Traditional Chinese Medicine services</h1>\n<h6>Q &amp; A on Traditional Chinese Medicine</h6>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>\n<a href=\"#more-features\" role=\"button\">\nContact us\n</a>\n<h2>Q &amp; A on Traditional Chinese Medicine</h2>\nTraditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.\n\nQ. Isn’t Traditional Chinese Medicine just a system of folk healing?\n\nA. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.\n\nQ. How does Traditional Chinese Medicine work?\n\nA. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy.\n\nQ. How does a TCM practitioner determine what is out of balance?\n\nA. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.\n\nQ. How is this rebalancing accomplished?\n\nA. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.\n\nQ. Is Traditional Chinese Medicine safe?\n\nA. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.\n<h4>Do you need help?</h4>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>','Q-A','','inherit','closed','closed','','1001-revision-v1','','','2019-04-20 01:05:21','2019-04-20 01:05:21','',1001,'https://test.evergreenwellness.com/2019/04/20/1001-revision-v1/',0,'revision','',0),(1012,1,'2019-04-20 00:12:40','2019-04-20 00:12:40','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Q & A on Traditional Chinese Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Q & A on Traditional Chinese Medicine\n</h2>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy.</p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Q-A','','inherit','closed','closed','','1001-revision-v1','','','2019-04-20 00:12:40','2019-04-20 00:12:40','',1001,'https://test.evergreenwellness.com/2019/04/20/1001-revision-v1/',0,'revision','',0),(1013,1,'2019-04-20 00:28:29','2019-04-20 00:28:29','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>The Efficacy of Acupuncture for Stroke Rehabilitation</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial</h2>		\n			<h3>Dr. Qizhi Gao, Wichita, KS</h3>		\n		<p><strong>OBJECTIVE:</strong> The purpose of this study was to determine the effects in the functional recovery of post stroke patients receiving multidisciplinary western rehabilitation and patients receiving acupuncture with electrical stimulation in addition to multidisciplinary western rehabilitation.</p><p><strong>BACKGROUND:</strong> Stroke is third leading cause of death in the U.S. and a leading cause of serious long-term disability. About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled. Physical, cognitive and psychological disabilities are major medical and social problems. Very little research in this area has been done in the United States.</p><p><strong>DESIGN/METHODS:</strong> The study was a 2:1 randomized study. The study group received classical acupuncture with electrical stimulation for 60 minutes in addition to their standard daily physical, occupational, and speech therapy.</p><p><strong>Intervention(s):</strong> All patients received 3 hours of therapy (physical, occupational and speech therapy) Monday through Friday and 1½ hours of therapy on weekends<strong>. </strong>Those in the study group also received acupuncture with electrical stimulation for 60 minutes on weekdays.</p><p><strong>Main Outcome Measure(s):</strong> Motor function, mobility, and daily life activities were assessed at the time of admission, every 7 days during length of stay and at the time of discharge using the Functional Independence Measure (FIM) scale.</p><p><strong>RESULTS:</strong> Patients in the control group and the study group did not differ significantly in age, gender or stroke side. There were statistically significant improvements in discharge placement and total FIM score change in the study group.</p><p><strong>CONCLUSIONS/RELEVANCE:</strong> Acupuncture is an effective adjunct to standard rehabilitation for post stroke patients as demonstrated by the 48 point FIM score change in the study group vs. the 20-point FIM score change in the control group and disposition of 90% of patients returned to their home in the study group vs. 33% in the control group.</p><p>Above paper was presented at the American Academy of Neurology 59th Annual Meeting on May 2, 2007</p><p>Supported by: Wesley Medical Research Institutes, 3306 E. Central, Wichita, KS 67208, 316-686-7172, Wesley Rehabilitation Hospital.<br />Category – Cerebrovascular Disease<br />SubCategory – Clinical Aspects</p><p> </p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Stroke Reseach','','publish','closed','closed','','stroke-reseach','','','2019-04-21 01:36:05','2019-04-21 01:36:05','',0,'https://test.evergreenwellness.com/?page_id=1013',0,'page','',0),(1014,1,'2019-04-20 00:16:25','2019-04-20 00:16:25','','Stroke Reseach','','inherit','closed','closed','','1013-revision-v1','','','2019-04-20 00:16:25','2019-04-20 00:16:25','',1013,'https://test.evergreenwellness.com/2019/04/20/1013-revision-v1/',0,'revision','',0),(1015,1,'2019-04-20 00:28:27','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2019-04-20 00:28:27','0000-00-00 00:00:00','',0,'https://test.evergreenwellness.com/?page_id=1015',0,'page','',0),(1017,1,'2019-04-20 00:30:58','2019-04-20 00:30:58','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>The Efficacy of Acupuncture for Stroke Rehabilitation</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial</h2>		\n			<h3>Dr. Qizhi Gao, Wichita, KS</h3>		\n		<p><strong>OBJECTIVE:</strong> The purpose of this study was to determine the effects in the functional recovery of post stroke patients receiving multidisciplinary western rehabilitation and patients receiving acupuncture with electrical stimulation in addition to multidisciplinary western rehabilitation.</p><p><strong>BACKGROUND:</strong> Stroke is third leading cause of death in the U.S. and a leading cause of serious long-term disability. About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled. Physical, cognitive and psychological disabilities are major medical and social problems. Very little research in this area has been done in the United States.</p><p><strong>DESIGN/METHODS:</strong> The study was a 2:1 randomized study. The study group received classical acupuncture with electrical stimulation for 60 minutes in addition to their standard daily physical, occupational, and speech therapy.</p><p><strong>Intervention(s):</strong> All patients received 3 hours of therapy (physical, occupational and speech therapy) Monday through Friday and 1½ hours of therapy on weekends<strong>. </strong>Those in the study group also received acupuncture with electrical stimulation for 60 minutes on weekdays.</p><p><strong>Main Outcome Measure(s):</strong> Motor function, mobility, and daily life activities were assessed at the time of admission, every 7 days during length of stay and at the time of discharge using the Functional Independence Measure (FIM) scale.</p><p><strong>RESULTS:</strong> Patients in the control group and the study group did not differ significantly in age, gender or stroke side. There were statistically significant improvements in discharge placement and total FIM score change in the study group.</p><p><strong>CONCLUSIONS/RELEVANCE:</strong> Acupuncture is an effective adjunct to standard rehabilitation for post stroke patients as demonstrated by the 48 point FIM score change in the study group vs. the 20-point FIM score change in the control group and disposition of 90% of patients returned to their home in the study group vs. 33% in the control group.</p><p>Above paper was presented at the American Academy of Neurology 59th Annual Meeting on May 2, 2007</p><p>Supported by: Wesley Medical Research Institutes, 3306 E. Central, Wichita, KS 67208, 316-686-7172, Wesley Rehabilitation Hospital.<br />Category – Cerebrovascular Disease<br />SubCategory – Clinical Aspects</p><p> </p>','Stroke Reseach','','inherit','closed','closed','','1013-revision-v1','','','2019-04-20 00:30:58','2019-04-20 00:30:58','',1013,'https://test.evergreenwellness.com/2019/04/20/1013-revision-v1/',0,'revision','',0),(1018,1,'2019-04-20 00:30:58','2019-04-20 00:30:58','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>The Efficacy of Acupuncture for Stroke Rehabilitation</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial</h2>		\n			<h3>Dr. Qizhi Gao, Wichita, KS</h3>		\n		<p><strong>OBJECTIVE:</strong> The purpose of this study was to determine the effects in the functional recovery of post stroke patients receiving multidisciplinary western rehabilitation and patients receiving acupuncture with electrical stimulation in addition to multidisciplinary western rehabilitation.</p><p><strong>BACKGROUND:</strong> Stroke is third leading cause of death in the U.S. and a leading cause of serious long-term disability. About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled. Physical, cognitive and psychological disabilities are major medical and social problems. Very little research in this area has been done in the United States.</p><p><strong>DESIGN/METHODS:</strong> The study was a 2:1 randomized study. The study group received classical acupuncture with electrical stimulation for 60 minutes in addition to their standard daily physical, occupational, and speech therapy.</p><p><strong>Intervention(s):</strong> All patients received 3 hours of therapy (physical, occupational and speech therapy) Monday through Friday and 1½ hours of therapy on weekends<strong>. </strong>Those in the study group also received acupuncture with electrical stimulation for 60 minutes on weekdays.</p><p><strong>Main Outcome Measure(s):</strong> Motor function, mobility, and daily life activities were assessed at the time of admission, every 7 days during length of stay and at the time of discharge using the Functional Independence Measure (FIM) scale.</p><p><strong>RESULTS:</strong> Patients in the control group and the study group did not differ significantly in age, gender or stroke side. There were statistically significant improvements in discharge placement and total FIM score change in the study group.</p><p><strong>CONCLUSIONS/RELEVANCE:</strong> Acupuncture is an effective adjunct to standard rehabilitation for post stroke patients as demonstrated by the 48 point FIM score change in the study group vs. the 20-point FIM score change in the control group and disposition of 90% of patients returned to their home in the study group vs. 33% in the control group.</p><p>Above paper was presented at the American Academy of Neurology 59th Annual Meeting on May 2, 2007</p><p>Supported by: Wesley Medical Research Institutes, 3306 E. Central, Wichita, KS 67208, 316-686-7172, Wesley Rehabilitation Hospital.<br />Category – Cerebrovascular Disease<br />SubCategory – Clinical Aspects</p><p> </p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Stroke Reseach','','inherit','closed','closed','','1013-revision-v1','','','2019-04-20 00:30:58','2019-04-20 00:30:58','',1013,'https://test.evergreenwellness.com/2019/04/20/1013-revision-v1/',0,'revision','',0),(1019,1,'2019-04-20 00:33:49','2019-04-20 00:33:49','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>\nTraditional Chinese Medicine <br> and Stroke Rehabilitation</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>\nTraditional Chinese Medicine and Stroke Rehabilitation</h2>		\n		<p>In addition being the third leading cause of death in the U.S., strokes are a leading cause of serious long-term disability.  About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled.  That number is expected to surpass the 1 million mark by 2050.  Significant physical, cognitive and psychological disabilities create major medical and social problems. </p><p>In the current medical climate, the type and amount of stroke rehabilitation a patient receives is many times dictated by insurance plan offerings, yet medical practitioners are unanimous in agreement that a comprehensive rehabilitative therapy program  provides the best chance of meaningful recovery.  Of the 72 million Americans that have experienced serious injury, stroke or other disabling disease more that 60 percent never receive proper rehabilitation.  Yet, the earlier rehabilitation begins the more likely the patient is to regain the ability to function and return to a productive satisfying life.</p><p>A stroke or cerebral vascular accidents (CVA) occur when a blood clot blocks a blood vessel or artery, or when a blood vessel breaks, interrupting blood flow to an area of the brain.  When a patient survives a stroke, all but a small percentage of them suffer from limitations in functional activities and subsequently do not become self-sufficient. We called it post-stroke syndrome.</p><p>According to National Stroke Association, there are nearly 4 million people in the United States who have survived a stroke and are living with the after-effects. These numbers do not reflect the scope of the problem and do not count the millions of husbands, wives and children who live with and care for stroke survivors and who are, because of their own altered lifestyle, greatly affected by stroke.  In the United States, Post-stroke patients normally receive physical therapy<em> (PT)</em>, Occupational therapy <em>(OT)</em> and/or Speech language pathology for their rehabilitation.</p><p>From Traditional Chinese Medicine (TCM) aspect, stroke caused by imbalance of <em>Yin </em>and<em> Yang </em>of inner organ and imbalance <em>Qi</em> and <em>blood.</em> The classification of <em>Synopsis of the Golden Chamber, </em>wrote by Zhang Zhongjing, a famous TCM doctor in the Eastern Han dynasty (300 AD), had described the symptoms and treatment method. Now many studies have been done for post-stroke patients to speed rehabilitation using TCM therapy such as Acupuncture and Moxibustion, Herbs, Tuina Anmo (Chinese Massage) and Qigong (Energy Healing). Following is a further explain these therapies and some results of studies that have been performed to date.</p><p><strong><em>Acupuncture and Moxibustion Therapy</em></strong></p><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>The study done by Chen YM, et al shows that for 108 cases of hemiplegia or paralysis of on eside of the body caused by stroke, early treatment (first three weeks) with acupuncture produces better result than the treatment initiated three weeks after stroke. The improvement rate is from 90.9% down to 71.4%.</p><p>Another study done by Kjendahl A, et al, Sunnaas Rehabilitation Hospital, Nesoddtangen, Norway shows that the acupuncture group improved significantly more than the controls, both during the treatment period of six weeks, and even more during the following year, both according to MAS, ADL, NHP and the social situation.</p><p><strong><em>Herbal Therapy</em></strong></p><p>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China.</p><p>The study done by Lin Faching, et al, Department of Neurology, Renji Hospital, Shanghai, China described: Of the 78 cased for which clinical signs were evaluated: vertigo was found in 43 cases (55.12%), nystagmus (rapid rhythmic repetitious involuntary (unwilled) horizontal, vertical or rotary eye movements) in 34 cases (43.59%), mental disorders ( including confusion, depression, disorientation, conscious blur and insomnia) in 14 cases (17.94%), motor paralysis in 28 cases (35.89 %), ataxia (Wobbliness. Lack of coordination and unsteadiness due to the brain’s failure to regulate the body’s posture and regulate the strength and direction of limb movements) in 18 cases (23.07%), sensory disorders in 12 cases (15.38%), and dyslalia (an articulatory disorder in which a patient does not pronounce the sounds clearly or they replace one sound for another) in 7 cases (8.97%). When the herb formulas were used in treatment, of the entire case sample, 97.44% reported an improvement in some symptoms and a satisfactory result was judged to be 74.36%. No obvious side effects were noted as a result of treatment when using the herbs.</p><p><strong><em>Tuina Anmo (Chinese Massage) Therapy</em></strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>The article wrote by Li Yangao, et al, The Bethune International Peace Hospital, China, mentioned that 44 patients had suffered from hemiplegia or paralysis of one side of the body due to stroke. The average age of patients was 54. The disease course had lasted from one month to three years, with an average of 105 days. They were treated by Tuina  Anmo therapy from 10 to 60 times, with an average of 24 times. The result is: 18 out of 44 cases improved obviously, 18 improved, 8 cases failed, the effective rate was 81.82%.</p><p><strong><em>Qigong (Energy Healing) Therapy</em></strong></p><p>Qigong is a method to exercise the body’s vital energy. It combines body movement, breath, exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose.</p><p>According to <em>147 cases of hemiplegia due to cerebrovascular accident treated by Qigong</em>, Zhang Xia, presented on the Fourth World Conference on Medical Qigong, the total effective rate is 93.2% in 12 weeks treatment period.</p><p><strong><em>Integrative Therapy of Traditional Chinese and Western Medicine</em></strong></p><p>It includes Acupuncture and Moxibustion Therapy, Herbal Therapy, Tuina Anmo (Chinese Massage) Therapy, Qigong Therapy, Physical Therapy, Occupational Therapy and speech training.</p><p>Wang Shaoqin et al, Beijing Rehabilitation Hospital, China, report their study on 100 cases of post-stroke patients treated by an integrated therapy of Traditional Chinese and Western medicine. After the 3 months treatment, the total effective rate was 83%. For post-cerebral hemorrhage cases the total effective rate was 89.29%, for post-cerebral infarction was 80.56%. The overall effective rate of 67 cases under age 60 was 91.04, of over age 60 was 66.67%. There was extremely significant difference between these two age groups. The total effective rate of 50 cases whose treatment started within 6 months after stroke was 94%; the effective rate of 50 cases whose treatment started within 6 months later stroke was 72%. There was extremely significant difference between these two age groups, too.</p><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.</p><p>TCM treatments for stroke and other conditions is provided at the Evergreen Wellness Center.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Stroke','','publish','closed','closed','','stroke','','','2019-04-21 01:54:48','2019-04-21 01:54:48','',0,'https://test.evergreenwellness.com/?page_id=1019',0,'page','',0),(1020,1,'2019-04-20 00:33:25','2019-04-20 00:33:25','','Stroke','','inherit','closed','closed','','1019-revision-v1','','','2019-04-20 00:33:25','2019-04-20 00:33:25','',1019,'https://test.evergreenwellness.com/2019/04/20/1019-revision-v1/',0,'revision','',0),(1021,1,'2019-04-20 00:39:06','2019-04-20 00:39:06','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>','Stroke','','inherit','closed','closed','','1019-revision-v1','','','2019-04-20 00:39:06','2019-04-20 00:39:06','',1019,'https://test.evergreenwellness.com/2019/04/20/1019-revision-v1/',0,'revision','',0),(1022,1,'2019-04-20 00:39:06','2019-04-20 00:39:06','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>\nTraditional Chinese Medicine <br> and Stroke Rehabilitation</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>\nTraditional Chinese Medicine and Stroke Rehabilitation</h2>		\n		<p>In addition being the third leading cause of death in the U.S., strokes are a leading cause of serious long-term disability.  About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled.  That number is expected to surpass the 1 million mark by 2050.  Significant physical, cognitive and psychological disabilities create major medical and social problems. </p><p>In the current medical climate, the type and amount of stroke rehabilitation a patient receives is many times dictated by insurance plan offerings, yet medical practitioners are unanimous in agreement that a comprehensive rehabilitative therapy program  provides the best chance of meaningful recovery.  Of the 72 million Americans that have experienced serious injury, stroke or other disabling disease more that 60 percent never receive proper rehabilitation.  Yet, the earlier rehabilitation begins the more likely the patient is to regain the ability to function and return to a productive satisfying life.</p><p>A stroke or cerebral vascular accidents (CVA) occur when a blood clot blocks a blood vessel or artery, or when a blood vessel breaks, interrupting blood flow to an area of the brain.  When a patient survives a stroke, all but a small percentage of them suffer from limitations in functional activities and subsequently do not become self-sufficient. We called it post-stroke syndrome.</p><p>According to National Stroke Association, there are nearly 4 million people in the United States who have survived a stroke and are living with the after-effects. These numbers do not reflect the scope of the problem and do not count the millions of husbands, wives and children who live with and care for stroke survivors and who are, because of their own altered lifestyle, greatly affected by stroke.  In the United States, Post-stroke patients normally receive physical therapy<em> (PT)</em>, Occupational therapy <em>(OT)</em> and/or Speech language pathology for their rehabilitation.</p><p>From Traditional Chinese Medicine (TCM) aspect, stroke caused by imbalance of <em>Yin </em>and<em> Yang </em>of inner organ and imbalance <em>Qi</em> and <em>blood.</em> The classification of <em>Synopsis of the Golden Chamber, </em>wrote by Zhang Zhongjing, a famous TCM doctor in the Eastern Han dynasty (300 AD), had described the symptoms and treatment method. Now many studies have been done for post-stroke patients to speed rehabilitation using TCM therapy such as Acupuncture and Moxibustion, Herbs, Tuina Anmo (Chinese Massage) and Qigong (Energy Healing). Following is a further explain these therapies and some results of studies that have been performed to date.</p><p><strong><em>Acupuncture and Moxibustion Therapy</em></strong></p><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>The study done by Chen YM, et al shows that for 108 cases of hemiplegia or paralysis of on eside of the body caused by stroke, early treatment (first three weeks) with acupuncture produces better result than the treatment initiated three weeks after stroke. The improvement rate is from 90.9% down to 71.4%.</p><p>Another study done by Kjendahl A, et al, Sunnaas Rehabilitation Hospital, Nesoddtangen, Norway shows that the acupuncture group improved significantly more than the controls, both during the treatment period of six weeks, and even more during the following year, both according to MAS, ADL, NHP and the social situation.</p><p><strong><em>Herbal Therapy</em></strong></p><p>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China.</p><p>The study done by Lin Faching, et al, Department of Neurology, Renji Hospital, Shanghai, China described: Of the 78 cased for which clinical signs were evaluated: vertigo was found in 43 cases (55.12%), nystagmus (rapid rhythmic repetitious involuntary (unwilled) horizontal, vertical or rotary eye movements) in 34 cases (43.59%), mental disorders ( including confusion, depression, disorientation, conscious blur and insomnia) in 14 cases (17.94%), motor paralysis in 28 cases (35.89 %), ataxia (Wobbliness. Lack of coordination and unsteadiness due to the brain’s failure to regulate the body’s posture and regulate the strength and direction of limb movements) in 18 cases (23.07%), sensory disorders in 12 cases (15.38%), and dyslalia (an articulatory disorder in which a patient does not pronounce the sounds clearly or they replace one sound for another) in 7 cases (8.97%). When the herb formulas were used in treatment, of the entire case sample, 97.44% reported an improvement in some symptoms and a satisfactory result was judged to be 74.36%. No obvious side effects were noted as a result of treatment when using the herbs.</p><p><strong><em>Tuina Anmo (Chinese Massage) Therapy</em></strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>The article wrote by Li Yangao, et al, The Bethune International Peace Hospital, China, mentioned that 44 patients had suffered from hemiplegia or paralysis of one side of the body due to stroke. The average age of patients was 54. The disease course had lasted from one month to three years, with an average of 105 days. They were treated by Tuina  Anmo therapy from 10 to 60 times, with an average of 24 times. The result is: 18 out of 44 cases improved obviously, 18 improved, 8 cases failed, the effective rate was 81.82%.</p><p><strong><em>Qigong (Energy Healing) Therapy</em></strong></p><p>Qigong is a method to exercise the body’s vital energy. It combines body movement, breath, exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose.</p><p>According to <em>147 cases of hemiplegia due to cerebrovascular accident treated by Qigong</em>, Zhang Xia, presented on the Fourth World Conference on Medical Qigong, the total effective rate is 93.2% in 12 weeks treatment period.</p><p><strong><em>Integrative Therapy of Traditional Chinese and Western Medicine</em></strong></p><p>It includes Acupuncture and Moxibustion Therapy, Herbal Therapy, Tuina Anmo (Chinese Massage) Therapy, Qigong Therapy, Physical Therapy, Occupational Therapy and speech training.</p><p>Wang Shaoqin et al, Beijing Rehabilitation Hospital, China, report their study on 100 cases of post-stroke patients treated by an integrated therapy of Traditional Chinese and Western medicine. After the 3 months treatment, the total effective rate was 83%. For post-cerebral hemorrhage cases the total effective rate was 89.29%, for post-cerebral infarction was 80.56%. The overall effective rate of 67 cases under age 60 was 91.04, of over age 60 was 66.67%. There was extremely significant difference between these two age groups. The total effective rate of 50 cases whose treatment started within 6 months after stroke was 94%; the effective rate of 50 cases whose treatment started within 6 months later stroke was 72%. There was extremely significant difference between these two age groups, too.</p><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.</p><p>TCM treatments for stroke and other conditions is provided at the Evergreen Wellness Center.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Stroke','','inherit','closed','closed','','1019-revision-v1','','','2019-04-20 00:39:06','2019-04-20 00:39:06','',1019,'https://test.evergreenwellness.com/2019/04/20/1019-revision-v1/',0,'revision','',0),(1023,1,'2019-04-20 00:46:55','2019-04-20 00:46:55','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>\nTCM and Heart Diseases </h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>TCM and Heart Diseases <br>\nChinese Medicine (TCM) Diagnosis of Heart Disease</h2>		\n		<section data-id=\"260f1af\" data-element_type=\"section\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).</p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and/or Blood Stasis.<br />Kidney and Heart control whole body Yang<br />Right foot edema – Yang Qi disorders<br />Left foot edema – Yin disorders</p><p>Chinese Medicine Heart Pain Patterns</p><p><strong>Heart Yang Deficiency</strong></p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.</p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.</p><p><strong>Heart Qi Deficiency</strong></p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.</p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.</p><p><strong>Heart Qi and Blood Deficiency</strong></p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it’s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.</p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.</p><p><strong>Heart and Kidney Yin Deficiency</strong></p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.</p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.</p><p><strong>Heart Blood Stagnation</strong></p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness’s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.</p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.</p><p><strong>Phlegm Fluid Stagnation</strong></p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.</p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.</p><p><strong>Liver Qi Stagnation</strong></p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.</p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.</p></section><section data-id=\"1b3628b\" data-element_type=\"section\">     </section><section data-id=\"2f5dbcc\" data-element_type=\"section\"> </section>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Heart','','publish','closed','closed','','heart','','','2019-04-21 02:00:17','2019-04-21 02:00:17','',0,'https://test.evergreenwellness.com/?page_id=1023',0,'page','',0),(1024,1,'2019-04-20 00:41:08','2019-04-20 00:41:08','','Heart','','inherit','closed','closed','','1023-revision-v1','','','2019-04-20 00:41:08','2019-04-20 00:41:08','',1023,'https://test.evergreenwellness.com/2019/04/20/1023-revision-v1/',0,'revision','',0),(1032,1,'2019-04-20 00:58:45','2019-04-20 00:58:45','<h1>We offer better Traditional Chinese Medicine services</h1>\n<h6>\nTCM and Heart Diseases</h6>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>\n<a href=\"#more-features\" role=\"button\">\nContact us\n</a>\n<h2>TCM and Heart Diseases\nChinese Medicine (TCM) Diagnosis of Heart Disease</h2>\n<section data-id=\"260f1af\" data-element_type=\"section\">In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).\n\nKidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and/or Blood Stasis.\nKidney and Heart control whole body Yang\nRight foot edema – Yang Qi disorders\nLeft foot edema – Yin disorders\n\nChinese Medicine Heart Pain Patterns\n\n<strong>Heart Yang Deficiency</strong>\n\nYang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.\n\nClinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.\n\n<strong>Heart Qi Deficiency</strong>\n\nSimilarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.\n\nClinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.\n\n<strong>Heart Qi and Blood Deficiency</strong>\n\nGeneral overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it’s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.\n\nClinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.\n\n<strong>Heart and Kidney Yin Deficiency</strong>\n\nKidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.\n\nClinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.\n\n<strong>Heart Blood Stagnation</strong>\n\nBlood stagnation causing heart disease is usually the end result of other prolonged illness’s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.\n\nClinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.\n\n<strong>Phlegm Fluid Stagnation</strong>\n\nPhlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.\n\nClinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.\n\n<strong>Liver Qi Stagnation</strong>\n\nGeneral emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.\n\nClinical symptoms of Liver Qi stagnation are mild recurrent fullness/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.\n\n</section>\n<section data-id=\"1b3628b\" data-element_type=\"section\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</section>\n<section data-id=\"2f5dbcc\" data-element_type=\"section\">&nbsp;</section>\n<h4>Do you need help?</h4>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>','Heart','','inherit','closed','closed','','1023-revision-v1','','','2019-04-20 00:58:45','2019-04-20 00:58:45','',1023,'https://test.evergreenwellness.com/2019/04/20/1023-revision-v1/',0,'revision','',0),(1025,1,'2019-04-20 00:47:45','2019-04-20 00:47:45','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>TCM and Heart Diseases <br>\nChinese Medicine (TCM) Diagnosis of Heart Disease</h2>		\n		<section data-id=\"260f1af\" data-element_type=\"section\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).</p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and/or Blood Stasis.<br />Kidney and Heart control whole body Yang<br />Right foot edema – Yang Qi disorders<br />Left foot edema – Yin disorders</p><p>Chinese Medicine Heart Pain Patterns</p><p><strong>Heart Yang Deficiency</strong></p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.</p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.</p><p><strong>Heart Qi Deficiency</strong></p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.</p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.</p><p><strong>Heart Qi and Blood Deficiency</strong></p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it’s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.</p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.</p><p><strong>Heart and Kidney Yin Deficiency</strong></p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.</p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.</p><p><strong>Heart Blood Stagnation</strong></p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness’s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.</p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.</p><p><strong>Phlegm Fluid Stagnation</strong></p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.</p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.</p><p><strong>Liver Qi Stagnation</strong></p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.</p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.</p></section><section data-id=\"1b3628b\" data-element_type=\"section\">     </section><section data-id=\"2f5dbcc\" data-element_type=\"section\"> </section>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Heart','','inherit','closed','closed','','1023-revision-v1','','','2019-04-20 00:47:45','2019-04-20 00:47:45','',1023,'https://test.evergreenwellness.com/2019/04/20/1023-revision-v1/',0,'revision','',0),(1026,1,'2019-04-20 00:47:45','2019-04-20 00:47:45','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>\nTCM and Heart Diseases </h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>TCM and Heart Diseases <br>\nChinese Medicine (TCM) Diagnosis of Heart Disease</h2>		\n		<section data-id=\"260f1af\" data-element_type=\"section\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).</p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and/or Blood Stasis.<br />Kidney and Heart control whole body Yang<br />Right foot edema – Yang Qi disorders<br />Left foot edema – Yin disorders</p><p>Chinese Medicine Heart Pain Patterns</p><p><strong>Heart Yang Deficiency</strong></p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.</p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.</p><p><strong>Heart Qi Deficiency</strong></p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.</p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.</p><p><strong>Heart Qi and Blood Deficiency</strong></p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it’s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.</p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.</p><p><strong>Heart and Kidney Yin Deficiency</strong></p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.</p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.</p><p><strong>Heart Blood Stagnation</strong></p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness’s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.</p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.</p><p><strong>Phlegm Fluid Stagnation</strong></p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.</p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.</p><p><strong>Liver Qi Stagnation</strong></p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.</p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.</p></section><section data-id=\"1b3628b\" data-element_type=\"section\">     </section><section data-id=\"2f5dbcc\" data-element_type=\"section\"> </section>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Heart','','inherit','closed','closed','','1023-revision-v1','','','2019-04-20 00:47:45','2019-04-20 00:47:45','',1023,'https://test.evergreenwellness.com/2019/04/20/1023-revision-v1/',0,'revision','',0),(1027,1,'2019-04-20 00:56:47','2019-04-20 00:56:47','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Traditional Chinese Medicine and Infertility\n</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Traditional Chinese Medicine and Infertility\n</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.  Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.  The body is an organic whole and its functions are interconnected.  The meridian system, which allows vital energy to flow, links the body as a whole.  The TCM practitioner will treat patients with therapies from four main categories:  Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing). </p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.  Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques. </p><p><strong>Treating Infertility</strong></p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.  Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.  For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.</p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.  This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.  Additionally, most contemporary medical treatments involve the use of numerous drugs.  The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.</p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple’s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).  In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.  One of the groups received TCM treatments before and after implantation.  The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.</p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:</p><ul><li>TCM sees a personal as an integral mind/body organism and seeks to stimulate the body’s natural healing potential by treating root causes.</li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.</li><li>Traditional Chinese Medicine may be sued to strengthen and balance one’s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient  derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.  Pregnancy becomes easier to achieve and postpartum recuperation happens faster. </li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.</li></ul><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments</strong></p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body’s systems regardless of age.  For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle. </li></ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body’s systems.</p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40’s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.</li></ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.  There is not short cut to conception but in many cases, “turning back the clock” is possible.</p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.  Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.  The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.</li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.</li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.  The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.</li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.  Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.  However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.</li></ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.</p><p>TCM treatments for infertility and other conditions is provided at the Evergreen Wellness Center.  You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information. </p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Infertility','','publish','closed','closed','','infertility','','','2019-04-21 01:29:38','2019-04-21 01:29:38','',0,'https://test.evergreenwellness.com/?page_id=1027',0,'page','',0),(1028,1,'2019-04-20 00:50:49','2019-04-20 00:50:49','','Infertility','','inherit','closed','closed','','1027-revision-v1','','','2019-04-20 00:50:49','2019-04-20 00:50:49','',1027,'https://test.evergreenwellness.com/2019/04/20/1027-revision-v1/',0,'revision','',0),(1029,1,'2019-04-20 00:51:35','2019-04-20 00:51:35','','baby-2032303_1920-1024x683','','inherit','open','closed','','baby-2032303_1920-1024x683','','','2019-04-20 00:51:35','2019-04-20 00:51:35','',1027,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/baby-2032303_1920-1024x683.jpg',0,'attachment','image/jpeg',0),(1030,1,'2019-04-20 00:57:15','2019-04-20 00:57:15','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Traditional Chinese Medicine and Infertility\n</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Traditional Chinese Medicine and Infertility\n</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.  Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.  The body is an organic whole and its functions are interconnected.  The meridian system, which allows vital energy to flow, links the body as a whole.  The TCM practitioner will treat patients with therapies from four main categories:  Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing). </p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.  Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques. </p><p><strong>Treating Infertility</strong></p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.  Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.  For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.</p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.  This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.  Additionally, most contemporary medical treatments involve the use of numerous drugs.  The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.</p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple’s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).  In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.  One of the groups received TCM treatments before and after implantation.  The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.</p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:</p><ul><li>TCM sees a personal as an integral mind/body organism and seeks to stimulate the body’s natural healing potential by treating root causes.</li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.</li><li>Traditional Chinese Medicine may be sued to strengthen and balance one’s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient  derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.  Pregnancy becomes easier to achieve and postpartum recuperation happens faster. </li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.</li></ul><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments</strong></p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body’s systems regardless of age.  For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle. </li></ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body’s systems.</p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40’s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.</li></ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.  There is not short cut to conception but in many cases, “turning back the clock” is possible.</p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.  Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.  The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.</li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.</li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.  The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.</li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.  Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.  However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.</li></ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.</p><p>TCM treatments for infertility and other conditions is provided at the Evergreen Wellness Center.  You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information. </p>','Infertility','','inherit','closed','closed','','1027-revision-v1','','','2019-04-20 00:57:15','2019-04-20 00:57:15','',1027,'https://test.evergreenwellness.com/2019/04/20/1027-revision-v1/',0,'revision','',0),(1031,1,'2019-04-20 00:57:15','2019-04-20 00:57:15','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Traditional Chinese Medicine and Infertility\n</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Traditional Chinese Medicine and Infertility\n</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.  Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.  The body is an organic whole and its functions are interconnected.  The meridian system, which allows vital energy to flow, links the body as a whole.  The TCM practitioner will treat patients with therapies from four main categories:  Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing). </p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.  Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques. </p><p><strong>Treating Infertility</strong></p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.  Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.  For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.</p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.  This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.  Additionally, most contemporary medical treatments involve the use of numerous drugs.  The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.</p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple’s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).  In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.  One of the groups received TCM treatments before and after implantation.  The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.</p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:</p><ul><li>TCM sees a personal as an integral mind/body organism and seeks to stimulate the body’s natural healing potential by treating root causes.</li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.</li><li>Traditional Chinese Medicine may be sued to strengthen and balance one’s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient  derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.  Pregnancy becomes easier to achieve and postpartum recuperation happens faster. </li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.</li></ul><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments</strong></p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body’s systems regardless of age.  For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle. </li></ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body’s systems.</p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40’s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.</li></ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.  There is not short cut to conception but in many cases, “turning back the clock” is possible.</p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.  Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.  The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.</li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.</li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.  The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.</li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.  Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.  However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.</li></ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.</p><p>TCM treatments for infertility and other conditions is provided at the Evergreen Wellness Center.  You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information. </p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Infertility','','inherit','closed','closed','','1027-revision-v1','','','2019-04-20 00:57:15','2019-04-20 00:57:15','',1027,'https://test.evergreenwellness.com/2019/04/20/1027-revision-v1/',0,'revision','',0),(1034,1,'2019-04-20 01:03:57','2019-04-20 01:03:57','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</li><li><a href=\"https://test.evergreenwellness.com/heart/\">TCM and Heart Diseases</a></li><li>Traditional Chinese Medicine and Infertility</li></ol>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 01:03:57','2019-04-20 01:03:57','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1037,1,'2019-04-20 01:10:40','2019-04-20 01:10:40','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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>The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial​</li><li>Stroke Rehabilitation and Traditional Chinese Medicine</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 01:10:40','2019-04-20 01:10:40','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1038,1,'2019-04-20 01:12:56','2019-04-20 01:12:56','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 01:12:56','2019-04-20 01:12:56','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1039,1,'2019-04-20 01:17:01','2019-04-20 01:17:01','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>\nTCM and Heart Diseases </h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>TCM and Heart Diseases <br>\nChinese Medicine (TCM) Diagnosis of Heart Disease</h2>		\n		<section data-id=\"260f1af\" data-element_type=\"section\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).</p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and/or Blood Stasis.<br />Kidney and Heart control whole body Yang<br />Right foot edema – Yang Qi disorders<br />Left foot edema – Yin disorders</p><p>Chinese Medicine Heart Pain Patterns</p><p><strong>Heart Yang Deficiency</strong></p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.</p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.</p><p><strong>Heart Qi Deficiency</strong></p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.</p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.</p><p><strong>Heart Qi and Blood Deficiency</strong></p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it’s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.</p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.</p><p><strong>Heart and Kidney Yin Deficiency</strong></p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.</p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.</p><p><strong>Heart Blood Stagnation</strong></p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness’s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.</p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.</p><p><strong>Phlegm Fluid Stagnation</strong></p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.</p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.</p><p><strong>Liver Qi Stagnation</strong></p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.</p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.</p></section><section data-id=\"1b3628b\" data-element_type=\"section\">     </section><section data-id=\"2f5dbcc\" data-element_type=\"section\"> </section>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Heart','','inherit','closed','closed','','1023-revision-v1','','','2019-04-20 01:17:01','2019-04-20 01:17:01','',1023,'https://test.evergreenwellness.com/2019/04/20/1023-revision-v1/',0,'revision','',0),(1044,1,'2019-04-20 01:28:19','2019-04-20 01:28:19','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n										<img width=\"686\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg 686w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 01:28:19','2019-04-20 01:28:19','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1042,1,'2019-04-20 01:25:10','2019-04-20 01:25:10','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n										<img width=\"686\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg 686w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 01:25:10','2019-04-20 01:25:10','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1041,1,'2019-04-20 01:23:16','2019-04-20 01:23:16','','treatment','','inherit','open','closed','','treatment','','','2019-04-20 01:23:16','2019-04-20 01:23:16','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg',0,'attachment','image/jpeg',0),(1045,1,'2019-04-20 01:30:53','2019-04-20 01:30:53','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Q & A on Traditional Chinese Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Q & A on Traditional Chinese Medicine\n</h2>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy.</p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Q-A','','inherit','closed','closed','','1001-revision-v1','','','2019-04-20 01:30:53','2019-04-20 01:30:53','',1001,'https://test.evergreenwellness.com/2019/04/20/1001-revision-v1/',0,'revision','',0),(1046,1,'2019-04-20 01:31:53','2019-04-20 01:31:53','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n										<img width=\"686\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg 686w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238https://vimeo.com/194991450https://youtu.be/RTQGpPwn2BU		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 01:31:53','2019-04-20 01:31:53','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1047,1,'2019-04-20 01:33:17','2019-04-20 01:33:17','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>\nTCM and Heart Diseases </h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>TCM and Heart Diseases <br>\nChinese Medicine (TCM) Diagnosis of Heart Disease</h2>		\n		<section data-id=\"260f1af\" data-element_type=\"section\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).</p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and/or Blood Stasis.<br />Kidney and Heart control whole body Yang<br />Right foot edema – Yang Qi disorders<br />Left foot edema – Yin disorders</p><p>Chinese Medicine Heart Pain Patterns</p><p><strong>Heart Yang Deficiency</strong></p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.</p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.</p><p><strong>Heart Qi Deficiency</strong></p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.</p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.</p><p><strong>Heart Qi and Blood Deficiency</strong></p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it’s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.</p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.</p><p><strong>Heart and Kidney Yin Deficiency</strong></p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.</p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.</p><p><strong>Heart Blood Stagnation</strong></p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness’s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.</p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.</p><p><strong>Phlegm Fluid Stagnation</strong></p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.</p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.</p><p><strong>Liver Qi Stagnation</strong></p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.</p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.</p></section><section data-id=\"1b3628b\" data-element_type=\"section\">     </section><section data-id=\"2f5dbcc\" data-element_type=\"section\"> </section>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Heart','','inherit','closed','closed','','1023-revision-v1','','','2019-04-20 01:33:17','2019-04-20 01:33:17','',1023,'https://test.evergreenwellness.com/2019/04/20/1023-revision-v1/',0,'revision','',0),(1048,1,'2019-04-20 01:33:42','2019-04-20 01:33:42','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Traditional Chinese Medicine and Infertility\n</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Traditional Chinese Medicine and Infertility\n</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.  Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.  The body is an organic whole and its functions are interconnected.  The meridian system, which allows vital energy to flow, links the body as a whole.  The TCM practitioner will treat patients with therapies from four main categories:  Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing). </p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.  Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques. </p><p><strong>Treating Infertility</strong></p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.  Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.  For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.</p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.  This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.  Additionally, most contemporary medical treatments involve the use of numerous drugs.  The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.</p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple’s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).  In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.  One of the groups received TCM treatments before and after implantation.  The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.</p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:</p><ul><li>TCM sees a personal as an integral mind/body organism and seeks to stimulate the body’s natural healing potential by treating root causes.</li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.</li><li>Traditional Chinese Medicine may be sued to strengthen and balance one’s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient  derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.  Pregnancy becomes easier to achieve and postpartum recuperation happens faster. </li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.</li></ul><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments</strong></p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body’s systems regardless of age.  For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle. </li></ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body’s systems.</p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40’s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.</li></ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.  There is not short cut to conception but in many cases, “turning back the clock” is possible.</p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.  Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.  The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.</li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.</li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.  The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.</li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.  Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.  However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.</li></ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.</p><p>TCM treatments for infertility and other conditions is provided at the Evergreen Wellness Center.  You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information. </p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Infertility','','inherit','closed','closed','','1027-revision-v1','','','2019-04-20 01:33:42','2019-04-20 01:33:42','',1027,'https://test.evergreenwellness.com/2019/04/20/1027-revision-v1/',0,'revision','',0),(1091,1,'2019-04-20 22:56:58','2019-04-20 22:56:58','<h1>We offer better Traditional Chinese Medicine services</h1>\n<h6>\nTraditional Chinese Medicine\nand Stroke Rehabilitation</h6>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>\n<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\nContact us\n</a>\n<h2>\nTraditional Chinese Medicine and Stroke Rehabilitation</h2>\nIn addition being the third leading cause of death in the U.S., strokes are a leading cause of serious long-term disability.&nbsp; About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled.&nbsp; That number is expected to surpass the 1 million mark by 2050.&nbsp; Significant physical, cognitive and psychological disabilities create major medical and social problems.&nbsp;\n\nIn the current medical climate, the type and amount of stroke rehabilitation a patient receives is many times dictated by insurance plan offerings, yet medical practitioners are unanimous in agreement that a comprehensive rehabilitative therapy program&nbsp; provides the best chance of meaningful recovery.&nbsp; Of the 72 million Americans that have experienced serious injury, stroke or other disabling disease more that 60 percent never receive proper rehabilitation.&nbsp; Yet, the earlier rehabilitation begins the more likely the patient is to regain the ability to function and return to a productive satisfying life.\n\nA stroke or cerebral vascular accidents (CVA) occur when a blood clot blocks a blood vessel or artery, or when a blood vessel breaks, interrupting blood flow to an area of the brain.&nbsp; When a patient survives a stroke, all but a small percentage of them suffer from limitations in functional activities and subsequently do not become self-sufficient. We called it post-stroke syndrome.\n\nAccording to National Stroke Association, there are nearly 4 million people in the United States who have survived a stroke and are living with the after-effects. These numbers do not reflect the scope of the problem and do not count the millions of husbands, wives and children who live with and care for stroke survivors and who are, because of their own altered lifestyle, greatly affected by stroke.&nbsp; In the United States, Post-stroke patients normally receive physical therapy<em>&nbsp;(PT)</em>, Occupational therapy&nbsp;<em>(OT)</em>&nbsp;and/or Speech language pathology for their rehabilitation.\n\nFrom Traditional Chinese Medicine (TCM) aspect, stroke caused by imbalance of&nbsp;<em>Yin&nbsp;</em>and<em>&nbsp;Yang&nbsp;</em>of inner organ and imbalance&nbsp;<em>Qi</em>&nbsp;and&nbsp;<em>blood.</em>&nbsp;The classification of&nbsp;<em>Synopsis of the Golden Chamber,&nbsp;</em>wrote by Zhang Zhongjing, a famous TCM doctor in the Eastern Han dynasty (300 AD), had described the symptoms and treatment method. Now many studies have been done for post-stroke patients to speed rehabilitation using TCM therapy such as Acupuncture and Moxibustion, Herbs, Tuina Anmo (Chinese Massage) and Qigong (Energy Healing). Following is a further explain these therapies and some results of studies that have been performed to date.\n\n<strong><em>Acupuncture and Moxibustion Therapy</em></strong>\n\nIn acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.\n\nMoxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly&nbsp;<em>moxa-wool</em>&nbsp;in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.\n\nThe study done by Chen YM, et al shows that for 108 cases of hemiplegia or paralysis of on eside of the body caused by stroke, early treatment (first three weeks) with acupuncture produces better result than the treatment initiated three weeks after stroke. The improvement rate is from 90.9% down to 71.4%.\n\nAnother study done by Kjendahl A, et al, Sunnaas Rehabilitation Hospital, Nesoddtangen, Norway shows that the acupuncture group improved significantly more than the controls, both during the treatment period of six weeks, and even more during the following year, both according to MAS, ADL, NHP and the social situation.\n\n<strong><em>Herbal Therapy</em></strong>\n\nIn ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China.\n\nThe study done by Lin Faching, et al, Department of Neurology, Renji Hospital, Shanghai, China described: Of the 78 cased for which clinical signs were evaluated: vertigo was found in 43 cases (55.12%), nystagmus (rapid rhythmic repetitious involuntary (unwilled) horizontal, vertical or rotary eye movements) in 34 cases (43.59%), mental disorders ( including confusion, depression, disorientation, conscious blur and insomnia) in 14 cases (17.94%), motor paralysis in 28 cases (35.89 %), ataxia (Wobbliness. Lack of coordination and unsteadiness due to the brain’s failure to regulate the body’s posture and regulate the strength and direction of limb movements) in 18 cases (23.07%), sensory disorders in 12 cases (15.38%), and dyslalia (an articulatory disorder in which a patient does not pronounce the sounds clearly or they replace one sound for another) in 7 cases (8.97%). When the herb formulas were used in treatment, of the entire case sample, 97.44% reported an improvement in some symptoms and a satisfactory result was judged to be 74.36%. No obvious side effects were noted as a result of treatment when using the herbs.\n\n<strong><em>Tuina Anmo (Chinese Massage) Therapy</em></strong>\n\nTuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.\n\nThe article wrote by Li Yangao, et al, The Bethune International Peace Hospital, China, mentioned that 44 patients had suffered from hemiplegia or paralysis of one side of the body due to stroke. The average age of patients was 54. The disease course had lasted from one month to three years, with an average of 105 days. They were treated by Tuina&nbsp; Anmo therapy from 10 to 60 times, with an average of 24 times. The result is: 18 out of 44 cases improved obviously, 18 improved, 8 cases failed, the effective rate was 81.82%.\n\n<strong><em>Qigong (Energy Healing) Therapy</em></strong>\n\nQigong is a method to exercise the body’s vital energy. It combines body movement, breath, exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose.\n\nAccording to&nbsp;<em>147 cases of hemiplegia due to cerebrovascular accident treated by Qigong</em>, Zhang Xia, presented on the Fourth World Conference on Medical Qigong, the total effective rate is 93.2% in 12 weeks treatment period.\n\n<strong><em>Integrative Therapy of Traditional Chinese and Western Medicine</em></strong>\n\nIt includes Acupuncture and Moxibustion Therapy, Herbal Therapy, Tuina Anmo (Chinese Massage) Therapy, Qigong Therapy, Physical Therapy, Occupational Therapy and speech training.\n\nWang Shaoqin et al, Beijing Rehabilitation Hospital, China, report their study on 100 cases of post-stroke patients treated by an integrated therapy of Traditional Chinese and Western medicine. After the 3 months treatment, the total effective rate was 83%. For post-cerebral hemorrhage cases the total effective rate was 89.29%, for post-cerebral infarction was 80.56%. The overall effective rate of 67 cases under age 60 was 91.04, of over age 60 was 66.67%. There was extremely significant difference between these two age groups. The total effective rate of 50 cases whose treatment started within 6 months after stroke was 94%; the effective rate of 50 cases whose treatment started within 6 months later stroke was 72%. There was extremely significant difference between these two age groups, too.\n\nTraditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.&nbsp; Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.&nbsp; Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.&nbsp; As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.&nbsp; Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.\n\nTCM treatments for stroke and other conditions is provided at the Evergreen Wellness Center.\n<h4>Do you need help?</h4>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>','Stroke','','inherit','closed','closed','','1019-revision-v1','','','2019-04-20 22:56:58','2019-04-20 22:56:58','',1019,'https://test.evergreenwellness.com/2019/04/20/1019-revision-v1/',0,'revision','',0),(1049,1,'2019-04-20 01:34:29','2019-04-20 01:34:29','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>\nTraditional Chinese Medicine <br> and Stroke Rehabilitation</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>\nTraditional Chinese Medicine and Stroke Rehabilitation</h2>		\n		<p>In addition being the third leading cause of death in the U.S., strokes are a leading cause of serious long-term disability.  About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled.  That number is expected to surpass the 1 million mark by 2050.  Significant physical, cognitive and psychological disabilities create major medical and social problems. </p><p>In the current medical climate, the type and amount of stroke rehabilitation a patient receives is many times dictated by insurance plan offerings, yet medical practitioners are unanimous in agreement that a comprehensive rehabilitative therapy program  provides the best chance of meaningful recovery.  Of the 72 million Americans that have experienced serious injury, stroke or other disabling disease more that 60 percent never receive proper rehabilitation.  Yet, the earlier rehabilitation begins the more likely the patient is to regain the ability to function and return to a productive satisfying life.</p><p>A stroke or cerebral vascular accidents (CVA) occur when a blood clot blocks a blood vessel or artery, or when a blood vessel breaks, interrupting blood flow to an area of the brain.  When a patient survives a stroke, all but a small percentage of them suffer from limitations in functional activities and subsequently do not become self-sufficient. We called it post-stroke syndrome.</p><p>According to National Stroke Association, there are nearly 4 million people in the United States who have survived a stroke and are living with the after-effects. These numbers do not reflect the scope of the problem and do not count the millions of husbands, wives and children who live with and care for stroke survivors and who are, because of their own altered lifestyle, greatly affected by stroke.  In the United States, Post-stroke patients normally receive physical therapy<em> (PT)</em>, Occupational therapy <em>(OT)</em> and/or Speech language pathology for their rehabilitation.</p><p>From Traditional Chinese Medicine (TCM) aspect, stroke caused by imbalance of <em>Yin </em>and<em> Yang </em>of inner organ and imbalance <em>Qi</em> and <em>blood.</em> The classification of <em>Synopsis of the Golden Chamber, </em>wrote by Zhang Zhongjing, a famous TCM doctor in the Eastern Han dynasty (300 AD), had described the symptoms and treatment method. Now many studies have been done for post-stroke patients to speed rehabilitation using TCM therapy such as Acupuncture and Moxibustion, Herbs, Tuina Anmo (Chinese Massage) and Qigong (Energy Healing). Following is a further explain these therapies and some results of studies that have been performed to date.</p><p><strong><em>Acupuncture and Moxibustion Therapy</em></strong></p><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>The study done by Chen YM, et al shows that for 108 cases of hemiplegia or paralysis of on eside of the body caused by stroke, early treatment (first three weeks) with acupuncture produces better result than the treatment initiated three weeks after stroke. The improvement rate is from 90.9% down to 71.4%.</p><p>Another study done by Kjendahl A, et al, Sunnaas Rehabilitation Hospital, Nesoddtangen, Norway shows that the acupuncture group improved significantly more than the controls, both during the treatment period of six weeks, and even more during the following year, both according to MAS, ADL, NHP and the social situation.</p><p><strong><em>Herbal Therapy</em></strong></p><p>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China.</p><p>The study done by Lin Faching, et al, Department of Neurology, Renji Hospital, Shanghai, China described: Of the 78 cased for which clinical signs were evaluated: vertigo was found in 43 cases (55.12%), nystagmus (rapid rhythmic repetitious involuntary (unwilled) horizontal, vertical or rotary eye movements) in 34 cases (43.59%), mental disorders ( including confusion, depression, disorientation, conscious blur and insomnia) in 14 cases (17.94%), motor paralysis in 28 cases (35.89 %), ataxia (Wobbliness. Lack of coordination and unsteadiness due to the brain’s failure to regulate the body’s posture and regulate the strength and direction of limb movements) in 18 cases (23.07%), sensory disorders in 12 cases (15.38%), and dyslalia (an articulatory disorder in which a patient does not pronounce the sounds clearly or they replace one sound for another) in 7 cases (8.97%). When the herb formulas were used in treatment, of the entire case sample, 97.44% reported an improvement in some symptoms and a satisfactory result was judged to be 74.36%. No obvious side effects were noted as a result of treatment when using the herbs.</p><p><strong><em>Tuina Anmo (Chinese Massage) Therapy</em></strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>The article wrote by Li Yangao, et al, The Bethune International Peace Hospital, China, mentioned that 44 patients had suffered from hemiplegia or paralysis of one side of the body due to stroke. The average age of patients was 54. The disease course had lasted from one month to three years, with an average of 105 days. They were treated by Tuina  Anmo therapy from 10 to 60 times, with an average of 24 times. The result is: 18 out of 44 cases improved obviously, 18 improved, 8 cases failed, the effective rate was 81.82%.</p><p><strong><em>Qigong (Energy Healing) Therapy</em></strong></p><p>Qigong is a method to exercise the body’s vital energy. It combines body movement, breath, exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose.</p><p>According to <em>147 cases of hemiplegia due to cerebrovascular accident treated by Qigong</em>, Zhang Xia, presented on the Fourth World Conference on Medical Qigong, the total effective rate is 93.2% in 12 weeks treatment period.</p><p><strong><em>Integrative Therapy of Traditional Chinese and Western Medicine</em></strong></p><p>It includes Acupuncture and Moxibustion Therapy, Herbal Therapy, Tuina Anmo (Chinese Massage) Therapy, Qigong Therapy, Physical Therapy, Occupational Therapy and speech training.</p><p>Wang Shaoqin et al, Beijing Rehabilitation Hospital, China, report their study on 100 cases of post-stroke patients treated by an integrated therapy of Traditional Chinese and Western medicine. After the 3 months treatment, the total effective rate was 83%. For post-cerebral hemorrhage cases the total effective rate was 89.29%, for post-cerebral infarction was 80.56%. The overall effective rate of 67 cases under age 60 was 91.04, of over age 60 was 66.67%. There was extremely significant difference between these two age groups. The total effective rate of 50 cases whose treatment started within 6 months after stroke was 94%; the effective rate of 50 cases whose treatment started within 6 months later stroke was 72%. There was extremely significant difference between these two age groups, too.</p><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.</p><p>TCM treatments for stroke and other conditions is provided at the Evergreen Wellness Center.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Stroke','','inherit','closed','closed','','1019-revision-v1','','','2019-04-20 01:34:29','2019-04-20 01:34:29','',1019,'https://test.evergreenwellness.com/2019/04/20/1019-revision-v1/',0,'revision','',0),(1050,1,'2019-04-20 01:35:16','2019-04-20 01:35:16','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>The Efficacy of Acupuncture for Stroke Rehabilitation</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial</h2>		\n			<h3>Dr. Qizhi Gao, Wichita, KS</h3>		\n		<p><strong>OBJECTIVE:</strong> The purpose of this study was to determine the effects in the functional recovery of post stroke patients receiving multidisciplinary western rehabilitation and patients receiving acupuncture with electrical stimulation in addition to multidisciplinary western rehabilitation.</p><p><strong>BACKGROUND:</strong> Stroke is third leading cause of death in the U.S. and a leading cause of serious long-term disability. About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled. Physical, cognitive and psychological disabilities are major medical and social problems. Very little research in this area has been done in the United States.</p><p><strong>DESIGN/METHODS:</strong> The study was a 2:1 randomized study. The study group received classical acupuncture with electrical stimulation for 60 minutes in addition to their standard daily physical, occupational, and speech therapy.</p><p><strong>Intervention(s):</strong> All patients received 3 hours of therapy (physical, occupational and speech therapy) Monday through Friday and 1½ hours of therapy on weekends<strong>. </strong>Those in the study group also received acupuncture with electrical stimulation for 60 minutes on weekdays.</p><p><strong>Main Outcome Measure(s):</strong> Motor function, mobility, and daily life activities were assessed at the time of admission, every 7 days during length of stay and at the time of discharge using the Functional Independence Measure (FIM) scale.</p><p><strong>RESULTS:</strong> Patients in the control group and the study group did not differ significantly in age, gender or stroke side. There were statistically significant improvements in discharge placement and total FIM score change in the study group.</p><p><strong>CONCLUSIONS/RELEVANCE:</strong> Acupuncture is an effective adjunct to standard rehabilitation for post stroke patients as demonstrated by the 48 point FIM score change in the study group vs. the 20-point FIM score change in the control group and disposition of 90% of patients returned to their home in the study group vs. 33% in the control group.</p><p>Above paper was presented at the American Academy of Neurology 59th Annual Meeting on May 2, 2007</p><p>Supported by: Wesley Medical Research Institutes, 3306 E. Central, Wichita, KS 67208, 316-686-7172, Wesley Rehabilitation Hospital.<br />Category – Cerebrovascular Disease<br />SubCategory – Clinical Aspects</p><p> </p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Stroke Reseach','','inherit','closed','closed','','1013-revision-v1','','','2019-04-20 01:35:16','2019-04-20 01:35:16','',1013,'https://test.evergreenwellness.com/2019/04/20/1013-revision-v1/',0,'revision','',0),(1051,1,'2019-04-20 01:35:51','2019-04-20 01:35:51','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Introduction to Traditional Chinese Medicine <br> \nHolistic Concept, Dynamic View and Natural Therapies</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>\nIntroduction to Traditional Chinese Medicine <br> <br>\nHolistic Concept, Dynamic View and Natural Therapies</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>I. The Holistic Concept</p><p>In TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.</p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.  The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.</p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.  TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g. <em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. — </em>As stated in<em> Plain Questions, </em>a Chinese medicine book published about 2000 years ago.<em>  </em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.</p><p><strong>II. Dynamic View</strong></p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.  <strong>As a pathological generalization of disease in its certain stage which is called <u>syndromes</u> in TCM. <u>Syndromes</u> reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.  For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.</p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.</p><p>The reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.</p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.</p><p> From the example mentioned above, the TCM physician may provide <em>the same treatment for different diseases</em> such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em> is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.</p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).</p><p><strong>III. Natural Therapies</strong></p><p> TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).</p><ol><li><strong>Acupuncture and Moxibustion</strong></li></ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.  Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.</p><ol start=\"2\"><li><strong>Herbal Medicine</strong></li></ol><p><strong> </strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.</p><ol start=\"3\"><li><strong>Tuina Anmo -Chinese Massage</strong></li></ol><p><strong> </strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><ol start=\"4\"><li><strong>Qigong</strong></li></ol><p><strong> </strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.</p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.</p><p> No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.</p><p> If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-20 01:35:51','2019-04-20 01:35:51','',921,'https://test.evergreenwellness.com/2019/04/20/921-revision-v1/',0,'revision','',0),(1053,1,'2019-04-20 01:58:30','2019-04-20 01:58:30','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n										<img width=\"686\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg 686w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238		\n			<h4>Pain relief with <br>just one needle</h4>		\n		https://vimeo.com/194991450		\n			<h4><a href=\"https://ibreathin.com/\">Weight Management <br> Breathing yourself thin</a></h4>		\n		https://youtu.be/RTQGpPwn2BU		\n			<h4>Amazing story of one of our stroke rehabilitation patient</h4>		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 01:58:30','2019-04-20 01:58:30','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1055,1,'2019-04-20 02:02:17','2019-04-20 02:02:17','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n										<img width=\"686\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg 686w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238		\n			<h4>Pain relief with <br>just one needle</h4>		\n		https://vimeo.com/194991450		\n			<h4><a href=\"https://ibreathin.com/\">Weight Management <br> Breathing yourself thin</a></h4>		\n		https://youtu.be/RTQGpPwn2BU		\n			<h4>Amazing story of one of our stroke rehabilitation patient</h4>		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 02:02:17','2019-04-20 02:02:17','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1057,1,'2019-04-20 02:05:41','2019-04-20 02:05:41','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n										<img width=\"686\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg 686w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238		\n			<h4>Pain relief with <br>just one needle</h4>		\n		https://vimeo.com/194991450		\n			<h4><a href=\"https://ibreathin.com/\">Weight Management <br> Breathing yourself thin</a></h4>		\n		https://youtu.be/RTQGpPwn2BU		\n			<h4>Amazing story from one of our stroke rehabilitation patient</h4>		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 02:05:41','2019-04-20 02:05:41','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1058,1,'2019-04-20 14:52:18','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2019-04-20 14:52:18','0000-00-00 00:00:00','',0,'https://test.evergreenwellness.com/?page_id=1058',0,'page','',0),(1061,1,'2019-04-20 16:08:36','2019-04-20 16:08:36','<h1>We offer better Traditional Chinese Medicine services</h1>\n<h6>Acupuncture and Chinese herbal Medicine</h6>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>\n<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\nContact us\n</a>\n<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\">\n01\n<h2>about us.</h2>\n<strong>Our Mission Statement:&nbsp;</strong>\n\nThe Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.\n\n&nbsp;Evergreen 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.\n\n02\n<h2>Our Services</h2>\nPromotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\"></figure>\n<h5>Acupuncture</h5>\nAn Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\"></figure>\n<h5>Herbal Medicine</h5>\nHerbal medicine can be used to treat and also prevent various health problems.\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\"></figure>\n<h5>Oriental Bodywork</h5>\nIt is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\"></figure>\n<h5>Qigong</h5>\nQigong harmonizes body movement, breath and mental concentration for your well-being.\n\n05\n<h2>We treat the following cases</h2>\nand more ... ...\n<h5>Starter</h5>\n<h4>\n					$125</h4>\nPer Month\n<ul>\n 	<li>800GB  Online Storage</li>\n 	<li>20 Files Per Day</li>\n 	<li>2TB  Monthly Bandwidth</li>\n 	<li>Secure Platform</li>\n 	<li>Fast &amp; Reliable</li>\n 	<li>24/7 Customer Support</li>\n</ul>\n<!-- /.obfx-pricing-table-wrapper -->\n<a href=\"#contact\" role=\"button\">\nHave a question\n</a>\n<h5>Starter</h5>\n<h4>\n					$125</h4>\nPer Month\n<ul>\n 	<li>800GB  Online Storage</li>\n 	<li>20 Files Per Day</li>\n 	<li>2TB  Monthly Bandwidth</li>\n 	<li>Secure Platform</li>\n 	<li>Fast &amp; Reliable</li>\n 	<li>24/7 Customer Support</li>\n</ul>\n<!-- /.obfx-pricing-table-wrapper -->\n<a href=\"#\" role=\"button\">\nget started\n</a>\n<h5>Starter</h5>\n<h4>\n					$125</h4>\nPer Month\n<ul>\n 	<li>800GB  Online Storage</li>\n 	<li>20 Files Per Day</li>\n 	<li>2TB  Monthly Bandwidth</li>\n 	<li>Secure Platform</li>\n 	<li>Fast &amp; Reliable</li>\n 	<li>24/7 Customer Support</li>\n</ul>\n<!-- /.obfx-pricing-table-wrapper -->\n<a href=\"#\" role=\"button\">\nget started\n</a>\n<img width=\"686\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg 686w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\">\n<h3>Explore Our Awesomeness</h3>\nhttps://vimeo.com/313597238\n<h4>Pain relief with\njust one needle</h4>\nhttps://vimeo.com/194991450\n<h4><a href=\"https://ibreathin.com/\">Weight Management\nBreathing yourself thin</a></h4>\nhttps://youtu.be/RTQGpPwn2BU\n<h4>Amazing story from one of our stroke rehabilitation patient</h4>\n03\n<h2>Our team.</h2>\nexperienced professionals and licensed clinicians\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\"></figure>\n<h6>Qizhi Gao</h6>\nD.O.M., Dipl. OM (NCCAOM)\n\nDr. 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).\n<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\"></figure>\n<h6>Carrie Hao X. Shen</h6>\nLic. Acupuncturist\n\nCarrie 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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.\n\n04\n<h2>Testimonials.</h2>\nHear what our patient says\n<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n\n<strong>From Google Review</strong>\n\nWow!!!! 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’m 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.&nbsp;\nThank you Doctor!!\n\n<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n<p style=\"font-weight: 300;\"><strong style=\"font-style: inherit; font-weight: 600;\">From Yelp Review</strong></p>\n<p style=\"font-weight: 300;\">Carrie ( Dr. Gao’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>\n			05\n<h2>Magic Needle show</h2>\nDr. Gao\'s Acupuncture Demonstration\nPain relief with only one needle\nJanuary 17, 2004 in Kansas City\n1\n<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>\nhttps://vimeo.com/313597399\n<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n2\n<h4>NeckPain</h4>\nhttps://vimeo.com/313597516\n<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n3\n<h4>Lupus pain</h4>\nhttps://vimeo.com/313597633\n<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n4\n<h4>Toe Pain</h4>\nhttps://vimeo.com/315338770\n<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\">\n06\n<h2>Why Select Us?</h2>\nWe committed to provide quality patient-centered care,\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.\nPassionate - we care\nWell Trained - knowledgeable\nExperienced - years practice\n<h4>Do you need help?</h4>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>\n07\n<h2>Articles</h2>\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.\n<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<ol>\n 	<li><a href=\"https://test.evergreenwellness.com/q-a/\">Q &amp; A on Traditional Chinese Medicine</a></li>\n 	<li><a href=\"https://test.evergreenwellness.com/tcm-introduction/\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></li>\n 	<li><a href=\"https://test.evergreenwellness.com/stroke-reseach/\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial​</a></li>\n 	<li><a href=\"https://test.evergreenwellness.com/stroke/\">Stroke Rehabilitation and Traditional Chinese Medicine</a></li>\n 	<li><a href=\"https://test.evergreenwellness.com/heart/\">TCM and Heart Diseases</a></li>\n 	<li><a href=\"https://test.evergreenwellness.com/infertility/\">Traditional Chinese Medicine and Infertility</a></li>\n</ol>\n08\n<h2>Get in Touch</h2>\nNeed an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly\n<h6>Here for you</h6>\nCall us at 316-691-8811\n<h6>Where to find us</h6>\n1520 S. Webb Road, Suite 160\nWichita, KS 67207\n\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>\n<h2>Send us an email</h2>\n[contact-form-7 id=\"988\" title=\"Contact form 1\"]\n\n<style>\n/*Disable animations on table/mobile*/<br />\n@media only screen and (max-width : 768px) {<br />\n.animated, .animated.animated-slow {<br />\n    -webkit-animation-duration: 0s;<br />\n    animation-duration: 0s;<br />\n}<br />\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {<br />\n        animation-name: none;<br />\n    }<br />\n}<br />\n/*Fix flexbox IE11 width issue*/<br />\n@media only screen and (min-width : 991px) {<br />\n.nv-ie-width .elementor-column-wrap {<br />\n    min-width: 452px;<br />\n}<br />\n}<br />\n/*Video section - Remove link color on hover*/<br />\n    #alexis-video-section a:hover, #alexis-video-section a:focus {<br />\n        color: #fff;<br />\n    }<br />\n/*Pricing section - Fixes*/<br />\n@media only screen and (max-width: 1000px) and (min-width: 480px) {<br />\n    #alexis-pricing-column-width-3 {<br />\n        margin: 0 auto;<br />\n    }<br />\n}<br />\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {<br />\n    #alexis-pricing-column-width-1 .elementor-element-populated {<br />\n        margin: 0 0 0 -5px;<br />\n    }<br />\n    #alexis-pricing-column-width-2 .elementor-element-populated {<br />\n        margin: 0;<br />\n    }<br />\n    #alexis-pricing-column-width-3 .elementor-element-populated {<br />\n        margin: 0 0 0 5px;<br />\n    }<br />\n}<br />\n/*Blog section: fix for mobile*/<br />\n@media only screen and (max-width: 1000px) and (min-width: 480px) {<br />\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {<br />\n        margin: 0 auto;<br />\n    }<br />\n}<br />\n/*Center subscribe button on mobile*/<br />\n@media only screen and (max-width : 468px) {<br />\n    #nv-mobile-subscribe .content-form .submit-form {<br />\n        width: initial;<br />\n    }<br />\n}<br />\n/*Add space to contact form submit button*/<br />\n#nv-contact-form .content-form .submit-form {<br />\n    margin-top: 20px;<br />\n}<br />\n/*Center the Form succes/error notice*/<br />\n    #nv-contact-form .content-form-notice {<br />\n    margin: 0 auto;<br />\n}<br />\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 16:08:36','2019-04-20 16:08:36','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1060,1,'2019-04-20 16:06:47','2019-04-20 16:06:47','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			05		\n			<h2>We treat the following cases</h2>		\n			and more ... ...		\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Have a question\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n										<img width=\"686\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg 686w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238		\n			<h4>Pain relief with <br>just one needle</h4>		\n		https://vimeo.com/194991450		\n			<h4><a href=\"https://ibreathin.com/\">Weight Management <br> Breathing yourself thin</a></h4>		\n		https://youtu.be/RTQGpPwn2BU		\n			<h4>Amazing story from one of our stroke rehabilitation patient</h4>		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 16:06:47','2019-04-20 16:06:47','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1067,1,'2019-04-20 16:47:08','2019-04-20 16:47:08','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			05		\n			<h2>We treat the following cases</h2>		\n			and more ... ...		\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/flowers-429041_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Addictions </li><li>Depression &amp; Anxiety </li><li>Work &amp; Sport Injuries </li><li>Diabetes, High Blood Pressure </li><li>Stroke Rehabilitation </li><li>Skin Problem </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Have a question\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n			<h5>Starter</h5>		\n				<h4>\n					$125\n				</h4>\n				<p>Per Month</p>\n			<ul><li>800GB  Online Storage</li><li>20 Files Per Day</li><li>2TB  Monthly Bandwidth</li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n										<img width=\"686\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg 686w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238		\n			<h4>Pain relief with <br>just one needle</h4>		\n		https://vimeo.com/194991450		\n			<h4><a href=\"https://ibreathin.com/\">Weight Management <br> Breathing yourself thin</a></h4>		\n		https://youtu.be/RTQGpPwn2BU		\n			<h4>Amazing story from one of our stroke rehabilitation patient</h4>		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 16:47:08','2019-04-20 16:47:08','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1063,1,'2019-04-20 16:22:11','2019-04-20 16:22:11','','flower-2197679_640','','inherit','open','closed','','flower-2197679_640','','','2019-04-20 16:22:11','2019-04-20 16:22:11','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/flower-2197679_640.jpg',0,'attachment','image/jpeg',0),(1064,1,'2019-04-20 16:25:02','2019-04-20 16:25:02','','flowers-429041_640','','inherit','open','closed','','flowers-429041_640','','','2019-04-20 16:25:02','2019-04-20 16:25:02','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/flowers-429041_640.jpg',0,'attachment','image/jpeg',0),(1065,1,'2019-04-20 16:42:22','2019-04-20 16:42:22','','dahlia-1642461_640','','inherit','open','closed','','dahlia-1642461_640','','','2019-04-20 16:42:22','2019-04-20 16:42:22','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/dahlia-1642461_640.jpg',0,'attachment','image/jpeg',0),(1066,1,'2019-04-20 16:46:08','2019-04-20 16:46:08','','ornamental-poppies-139409_640','','inherit','open','closed','','ornamental-poppies-139409_640','','','2019-04-20 16:46:08','2019-04-20 16:46:08','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_640.jpg',0,'attachment','image/jpeg',0),(1070,1,'2019-04-20 18:13:12','2019-04-20 18:13:12','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			05		\n			<h2>We treat the following cases</h2>		\n			and more ... ...		\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/flowers-429041_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Addictions </li><li>Depression &amp; Anxiety </li><li>Work &amp; Sport Injuries </li><li>Diabetes, High Blood Pressure </li><li>Stroke Rehabilitation </li><li>Skin Problem </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Have a question\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Digestion Probelem </li><li>Paralyes </li><li>Weight Loss </li><li>Fibromylgia &amp; Chronic Fatigue </li><li>Insomnia &amp; Migraines </li><li>Men&#039;s Health </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Where to find us\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2418339_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Facial Rejuvenation </li><li>Ear &amp; Nose Problems </li><li>Poor Circulation </li><li>Secure Platform</li><li>Fast &amp; Reliable</li><li>24/7 Customer Support</li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#\" role=\"button\">\n						get started\n					</a>\n										<img width=\"686\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg 686w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238		\n			<h4>Pain relief with <br>just one needle</h4>		\n		https://vimeo.com/194991450		\n			<h4><a href=\"https://ibreathin.com/\">Weight Management <br> Breathing yourself thin</a></h4>		\n		https://youtu.be/RTQGpPwn2BU		\n			<h4>Amazing story from one of our stroke rehabilitation patient</h4>		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 18:13:12','2019-04-20 18:13:12','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1069,1,'2019-04-20 18:04:52','2019-04-20 18:04:52','','water-lily-2418339_640','','inherit','open','closed','','water-lily-2418339_640','','','2019-04-20 18:04:52','2019-04-20 18:04:52','',837,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2418339_640.jpg',0,'attachment','image/jpeg',0),(1072,1,'2019-04-20 18:20:23','2019-04-20 18:20:23','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			05		\n			<h2>We treat the following cases</h2>		\n			and more ... ...		\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/flowers-429041_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Addictions </li><li>Depression &amp; Anxiety </li><li>Work &amp; Sport Injuries </li><li>Diabetes, High Blood Pressure </li><li>Stroke Rehabilitation </li><li>Skin Problem </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Have a question\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Digestion Probelem </li><li>Paralyes </li><li>Weight Loss </li><li>Fibromylgia &amp; Chronic Fatigue </li><li>Insomnia &amp; Migraines </li><li>Men&#039;s Health </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Where to find us\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2418339_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Facial Rejuvenation </li><li>Ear &amp; Nose Problems </li><li>Poor Circulation </li><li>PMS &amp; Hormone Imbalance </li><li>Infertility </li><li>Women&#039;s Health </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						make an appointment\n					</a>\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238		\n			<h4>Pain relief with <br>just one needle</h4>		\n		https://vimeo.com/194991450		\n			<h4><a href=\"https://ibreathin.com/\">Weight Management <br> Breathing yourself thin</a></h4>		\n		https://youtu.be/RTQGpPwn2BU		\n			<h4>Amazing story from one of our stroke rehabilitation patient</h4>		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 18:20:23','2019-04-20 18:20:23','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1071,1,'2019-04-20 18:19:38','2019-04-20 18:19:38','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			05		\n			<h2>We treat the following cases</h2>		\n			and more ... ...		\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/flowers-429041_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Addictions </li><li>Depression &amp; Anxiety </li><li>Work &amp; Sport Injuries </li><li>Diabetes, High Blood Pressure </li><li>Stroke Rehabilitation </li><li>Skin Problem </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Have a question\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Digestion Probelem </li><li>Paralyes </li><li>Weight Loss </li><li>Fibromylgia &amp; Chronic Fatigue </li><li>Insomnia &amp; Migraines </li><li>Men&#039;s Health </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Where to find us\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2418339_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Facial Rejuvenation </li><li>Ear &amp; Nose Problems </li><li>Poor Circulation </li><li>PMS &amp; Hormone Imbalance </li><li>Infertility </li><li>Women&#039;s Health </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						make an appointment\n					</a>\n										<img width=\"686\" height=\"332\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment.jpg 686w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238		\n			<h4>Pain relief with <br>just one needle</h4>		\n		https://vimeo.com/194991450		\n			<h4><a href=\"https://ibreathin.com/\">Weight Management <br> Breathing yourself thin</a></h4>		\n		https://youtu.be/RTQGpPwn2BU		\n			<h4>Amazing story from one of our stroke rehabilitation patient</h4>		\n			03		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			04		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			05		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			06		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			07		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			08		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 18:19:38','2019-04-20 18:19:38','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1073,1,'2019-04-20 18:24:33','2019-04-20 18:24:33','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			03		\n			<h2>We treat the following cases</h2>		\n			and more ... ...		\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/flowers-429041_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Addictions </li><li>Depression &amp; Anxiety </li><li>Work &amp; Sport Injuries </li><li>Diabetes, High Blood Pressure </li><li>Stroke Rehabilitation </li><li>Skin Problem </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Have a question\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Digestion Probelem </li><li>Paralyes </li><li>Weight Loss </li><li>Fibromylgia &amp; Chronic Fatigue </li><li>Insomnia &amp; Migraines </li><li>Men&#039;s Health </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Where to find us\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2418339_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Facial Rejuvenation </li><li>Ear &amp; Nose Problems </li><li>Poor Circulation </li><li>PMS &amp; Hormone Imbalance </li><li>Infertility </li><li>Women&#039;s Health </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						make an appointment\n					</a>\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238		\n			<h4>Pain relief with <br>just one needle</h4>		\n		https://vimeo.com/194991450		\n			<h4><a href=\"https://ibreathin.com/\">Weight Management <br> Breathing yourself thin</a></h4>		\n		https://youtu.be/RTQGpPwn2BU		\n			<h4>Amazing story from one of our stroke rehabilitation patient</h4>		\n			04		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			05		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			06		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			07		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			08		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			09		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Here for you</h6><p>Call us at 316-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 18:24:33','2019-04-20 18:24:33','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1074,1,'2019-04-20 18:35:57','2019-04-20 18:35:57','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n										<img src=\"https://test.evergreenwellness.com/wp-content/uploads/elementor/thumbs/flower-1307578_1920-o6h4jwiiv7refw14x6bq14jnymfb0volk8ivw4qiu8.jpg\" title=\"flower-1307578_1920\" alt=\"flower-1307578_1920\" />											\n			01		\n			<h2>about us.</h2>		\n		<p><strong>Our Mission Statement: </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’s health and well-being.</p><p> Evergreen 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>		\n			02		\n			<h2>Our Services</h2>		\n			Promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h5>Acupuncture</h5><p>An Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h5>Herbal Medicine</h5><p>Herbal medicine can be used to treat and also prevent various health problems.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/nmm-150x150.jpg\" alt=\"\" /></figure><h5>Oriental Bodywork</h5><p>It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/th-150x150.jpg\" alt=\"\" /></figure><h5>Qigong</h5><p>\nQigong harmonizes body movement, breath and mental concentration for your well-being.</p>		\n			03		\n			<h2>We treat the following cases</h2>		\n			and more ... ...		\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/flowers-429041_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Addictions </li><li>Depression &amp; Anxiety </li><li>Work &amp; Sport Injuries </li><li>Diabetes, High Blood Pressure </li><li>Stroke Rehabilitation </li><li>Skin Problem </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Have a question\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/ornamental-poppies-139409_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Digestion Probelem </li><li>Paralyes </li><li>Weight Loss </li><li>Fibromylgia &amp; Chronic Fatigue </li><li>Insomnia &amp; Migraines </li><li>Men&#039;s Health </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"#contact\" role=\"button\">\n						Where to find us\n					</a>\n										<img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/water-lily-2418339_640-150x150.jpg\" alt=\"\" />											\n				<h4>\n				</h4>\n				<p></p>\n			<ul><li>Facial Rejuvenation </li><li>Ear &amp; Nose Problems </li><li>Poor Circulation </li><li>PMS &amp; Hormone Imbalance </li><li>Infertility </li><li>Women&#039;s Health </li></ul> <!-- /.obfx-pricing-table-wrapper -->		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						make an appointment\n					</a>\n			<h3>Explore Our Awesomeness</h3>		\n		https://vimeo.com/313597238		\n			<h4>Pain relief with <br>just one needle</h4>		\n		https://vimeo.com/194991450		\n			<h4><a href=\"https://ibreathin.com/\">Weight Management <br> Breathing yourself thin</a></h4>		\n		https://youtu.be/RTQGpPwn2BU		\n			<h4>Amazing story from one of our stroke rehabilitation patient</h4>		\n			04		\n			<h2>Our team.</h2>		\n			experienced professionals and licensed clinicians		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/gao-1-150x150.jpg\" alt=\"\" /></figure><h6>Qizhi Gao</h6><p>D.O.M., Dipl. OM (NCCAOM)</p>		\n			<p>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).</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></figure><h6>Carrie Hao X. Shen</h6><p> Lic. Acupuncturist  </p>		\n			<p>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.\nShe strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\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.</p>		\n			05		\n			<h2>Testimonials.</h2>		\n			Hear what our patient says		\n										<img width=\"1920\" height=\"1184\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-300x185.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-768x474.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/roses-3418141_1920-1024x631.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<p><strong>From Google Review</strong></p><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’m 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. <br />Thank you Doctor!!</p>		\n										<img width=\"1920\" height=\"1440\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-300x225.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-768x576.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/red-roses-4232_1920-1024x768.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n		<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’s 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… I’m a private person, so I’m 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….we finally became pregnant after 7 yrs of trying… I’m so lucky and grateful I found them…thank 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>		\n			06		\n			<h2>Magic Needle show</h2>		\n			Dr. Gao\'s Acupuncture Demonstration<br>\nPain relief with only one needle<br>\nJanuary 17, 2004 in Kansas City		\n			1		\n			<h4><a href=\"https://vimeo.com/313597399\">Sciatic Pain</a></h4>		\n		https://vimeo.com/313597399		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-676653_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			2		\n			<h4>NeckPain</h4>		\n		https://vimeo.com/313597516		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675124_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			3		\n			<h4>Lupus pain</h4>		\n		https://vimeo.com/313597633		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675125_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			4		\n			<h4>Toe Pain</h4>		\n		https://vimeo.com/315338770		\n										<img width=\"1920\" height=\"1920\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920.jpg 1920w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-150x150.jpg 150w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-300x300.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-768x768.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/chinese-675123_1920-1024x1024.jpg 1024w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			07		\n			<h2>Why Select Us?</h2>		\n			We committed to provide quality patient-centered care,<br>\nwhich promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.		\n			Passionate - we care		\n			Well Trained - knowledgeable		\n			Experienced - years practice		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			08		\n			<h2>Articles</h2>		\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.		\n										<img width=\"300\" height=\"199\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg\" alt=\"\" srcset=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-300x199.jpg 300w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-768x508.jpg 768w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-1024x678.jpg 1024w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280-930x620.jpg 930w, https://test.evergreenwellness.com/wp-content/uploads/2019/04/child-316511_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<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 – A Randomized Controlled Trial​</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>		\n			09		\n			<h2>Get in Touch</h2>		\n			Need an expert?\nYou are more than welcomed to leave your contact info\nand we will be in touch shortly		\n			<h6>Contact us by phone</h6><p>(316)-691-8811</p>		\n			<h6>Where to find us</h6><p>1520 S. Webb Road, Suite 160\nWichita, KS 67207</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S.%20Webb%20Road%2C%20Suite%20160%20Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"></iframe>		\n			<h2>Send us an email</h2>		\n		[contact-form-7 id=\"988\" title=\"Contact form 1\"]		\n			<style>\n/*Disable animations on table/mobile*/\n@media only screen and (max-width : 768px) {\n.animated, .animated.animated-slow {\n    -webkit-animation-duration: 0s;\n    animation-duration: 0s;\n}\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\n        animation-name: none;\n    }\n}\n/*Fix flexbox IE11 width issue*/\n@media only screen and (min-width : 991px) {\n.nv-ie-width .elementor-column-wrap {\n    min-width: 452px;\n}\n}\n/*Video section - Remove link color on hover*/\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\n        color: #fff;\n    }\n/*Pricing section - Fixes*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-pricing-column-width-3 {\n        margin: 0 auto;\n    }\n}\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\n    #alexis-pricing-column-width-1 .elementor-element-populated {\n        margin: 0 0 0 -5px;\n    }\n    #alexis-pricing-column-width-2 .elementor-element-populated {\n        margin: 0;\n    }\n    #alexis-pricing-column-width-3 .elementor-element-populated {\n        margin: 0 0 0 5px;\n    }\n}\n/*Blog section: fix for mobile*/\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\n        margin: 0 auto;\n    }\n}\n/*Center subscribe button on mobile*/\n@media only screen and (max-width : 468px) {\n    #nv-mobile-subscribe .content-form .submit-form {\n        width: initial;\n    }\n}\n/*Add space to contact form submit button*/\n#nv-contact-form .content-form .submit-form {\n    margin-top: 20px;\n}\n/*Center the Form succes/error notice*/\n    #nv-contact-form .content-form-notice {\n    margin: 0 auto;\n}\n</style>','Home','','inherit','closed','closed','','837-revision-v1','','','2019-04-20 18:35:57','2019-04-20 18:35:57','',837,'https://test.evergreenwellness.com/2019/04/20/837-revision-v1/',0,'revision','',0),(1075,1,'2019-04-20 18:47:09','2019-04-20 18:47:09','{\n    \"neve::nav_menu_locations[footer]\": {\n        \"value\": -5596956631425208000,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-20 18:42:41\"\n    },\n    \"nav_menu[-5596956631425208000]\": {\n        \"value\": {\n            \"name\": \"Footer One\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"auto_add\": false\n        },\n        \"type\": \"nav_menu\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-20 18:42:41\"\n    },\n    \"nav_menu_item[-5896833704944781000]\": {\n        \"value\": {\n            \"object_id\": 0,\n            \"object\": \"\",\n            \"menu_item_parent\": 0,\n            \"position\": 1,\n            \"type\": \"custom\",\n            \"title\": \"Home\",\n            \"url\": \"https://test.evergreenwellness.com\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Home\",\n            \"nav_menu_term_id\": -5596956631425208000,\n            \"_invalid\": false,\n            \"type_label\": \"Custom Link\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-20 18:43:43\"\n    },\n    \"nav_menu_item[-1592246223503341600]\": {\n        \"value\": {\n            \"object_id\": 1013,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 4,\n            \"type\": \"post_type\",\n            \"title\": \"Stroke Reseach\",\n            \"url\": \"https://test.evergreenwellness.com/stroke-reseach/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Stroke Reseach\",\n            \"nav_menu_term_id\": -5596956631425208000,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-20 18:47:09\"\n    },\n    \"nav_menu_item[-3727504847802798000]\": {\n        \"value\": {\n            \"object_id\": 1027,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 2,\n            \"type\": \"post_type\",\n            \"title\": \"Infertility\",\n            \"url\": \"https://test.evergreenwellness.com/infertility/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Infertility\",\n            \"nav_menu_term_id\": -5596956631425208000,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-20 18:47:09\"\n    },\n    \"nav_menus_created_posts\": {\n        \"value\": [\n            1076,\n            1077\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-20 18:47:09\"\n    },\n    \"nav_menu_item[-5249799527088577000]\": {\n        \"value\": {\n            \"object_id\": 1076,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 3,\n            \"type\": \"post_type\",\n            \"title\": \"Weight Loss\",\n            \"url\": \"https://test.evergreenwellness.com/?page_id=1076\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Weight Loss\",\n            \"nav_menu_term_id\": -5596956631425208000,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-20 18:47:09\"\n    },\n    \"nav_menu_item[-6272752700975190000]\": {\n        \"value\": {\n            \"object_id\": 1077,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 5,\n            \"type\": \"post_type\",\n            \"title\": \"Influencer\",\n            \"url\": \"https://test.evergreenwellness.com/?page_id=1077\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Influencer\",\n            \"nav_menu_term_id\": -5596956631425208000,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-20 18:47:09\"\n    }\n}','','','trash','closed','closed','','440e1dfa-98fc-461b-8a74-197a88b14cbc','','','2019-04-20 18:47:09','2019-04-20 18:47:09','',0,'https://test.evergreenwellness.com/?p=1075',0,'customize_changeset','',0),(1076,1,'2019-04-20 18:47:09','2019-04-20 18:47:09','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Weight management</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Weight Management and Chinese Medicine</h2>		\n		<p>In traditional Chinese medicine, excessive weight gain is mostly due to the imbalance of inner organs\' function. </p><p>Eating more or less, healthy diet or unhealthy diet, it will affect your weight management. But you may find that you, and other family members eat same food, someone eat less, still gain weight, but others may not, even they eat more.</p><p>Physical exercises help weight management. However, it may get opposite result from your goal if you make yourself too exhaust. Hormone imbalance is often be blamed for weight issue. Fatigue is one of main reason to cause hormone imbalance.  </p><p>So, balancing inner organs\' function plays a very important role for the ability to process the food or reduce fatigue.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h3>Acupuncture for Weight Loss</h3><p>In your initial visit, doctor will make a treatment plan according your health status, your goal for weight management. Acupuncture is used to balance your inner organs\' function</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h3>herb for Weight Loss</h3><p>In your initial visit, doctor will make a treatment plan for you according your health status, your goal for weight management. Herb pills will be recommended.</p>		\n			<figure><a href=\"https://ibreathin.com\"><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/Dr-Gao_2010-011-1024x731-150x150.jpg\" alt=\"\" /></a></figure><h3><a href=\"https://ibreathin.com\">Qigong for Weight Loss</a></h3><p>Qigong – Breathing Yourself Thin. You can do it to improve your health and to reach your weight management goal as long as you can breathe. Click on the picture for more detail about the online class.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Weight Loss','','publish','closed','closed','','weight-loss','','','2019-04-21 21:59:28','2019-04-21 21:59:28','',0,'https://test.evergreenwellness.com/?page_id=1076',0,'page','',0),(1077,1,'2019-04-20 18:47:09','2019-04-20 18:47:09','','Influencer','','publish','closed','closed','','influencer','','','2019-04-20 18:47:09','2019-04-20 18:47:09','',0,'https://test.evergreenwellness.com/?page_id=1077',0,'page','',0),(1111,1,'2019-04-21 00:58:59','2019-04-21 00:58:59','{\n    \"neve::nav_menu_locations[footer]\": {\n        \"value\": -8207158052540379000,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:58:09\"\n    },\n    \"nav_menu[10]\": {\n        \"value\": false,\n        \"type\": \"nav_menu\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:57:09\"\n    },\n    \"nav_menu[-8207158052540379000]\": {\n        \"value\": {\n            \"name\": \"Footer One\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"auto_add\": false\n        },\n        \"type\": \"nav_menu\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:58:09\"\n    },\n    \"nav_menu_item[-8871669692978880000]\": {\n        \"value\": {\n            \"object_id\": 0,\n            \"object\": \"\",\n            \"menu_item_parent\": 0,\n            \"position\": 1,\n            \"type\": \"custom\",\n            \"title\": \"Home\",\n            \"url\": \"https://test.evergreenwellness.com\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Home\",\n            \"nav_menu_term_id\": -8207158052540379000,\n            \"_invalid\": false,\n            \"type_label\": \"Custom Link\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:58:09\"\n    },\n    \"nav_menu_item[-2039620905872459800]\": {\n        \"value\": {\n            \"object_id\": 1027,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 2,\n            \"type\": \"post_type\",\n            \"title\": \"Infertility\",\n            \"url\": \"https://test.evergreenwellness.com/infertility/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Infertility\",\n            \"nav_menu_term_id\": -8207158052540379000,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:58:59\"\n    },\n    \"nav_menu_item[-5657931065235472000]\": {\n        \"value\": {\n            \"object_id\": 1076,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 3,\n            \"type\": \"post_type\",\n            \"title\": \"Weight Loss\",\n            \"url\": \"https://test.evergreenwellness.com/weight-loss/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Weight Loss\",\n            \"nav_menu_term_id\": -8207158052540379000,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:58:59\"\n    },\n    \"nav_menu_item[-3000338494332170000]\": {\n        \"value\": {\n            \"object_id\": 1013,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 4,\n            \"type\": \"post_type\",\n            \"title\": \"Stroke Reseach\",\n            \"url\": \"https://test.evergreenwellness.com/stroke-reseach/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Stroke Reseach\",\n            \"nav_menu_term_id\": -8207158052540379000,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:58:59\"\n    },\n    \"nav_menu_item[-6914483868557941000]\": {\n        \"value\": {\n            \"object_id\": 1001,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 5,\n            \"type\": \"post_type\",\n            \"title\": \"Q&A\",\n            \"url\": \"https://test.evergreenwellness.com/q-a/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Q-A\",\n            \"nav_menu_term_id\": -8207158052540379000,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:58:59\"\n    }\n}','','','trash','closed','closed','','6c7c7162-2c33-4bac-961d-950254229da2','','','2019-04-21 00:58:59','2019-04-21 00:58:59','',0,'https://test.evergreenwellness.com/?p=1111',0,'customize_changeset','',0),(1081,1,'2019-04-20 18:47:09','2019-04-20 18:47:09','','Weight Loss','','inherit','closed','closed','','1076-revision-v1','','','2019-04-20 18:47:09','2019-04-20 18:47:09','',1076,'https://test.evergreenwellness.com/2019/04/20/1076-revision-v1/',0,'revision','',0),(1082,1,'2019-04-20 18:47:09','2019-04-20 18:47:09','','Influencer','','inherit','closed','closed','','1077-revision-v1','','','2019-04-20 18:47:09','2019-04-20 18:47:09','',1077,'https://test.evergreenwellness.com/2019/04/20/1077-revision-v1/',0,'revision','',0),(1110,1,'2019-04-21 00:56:37','2019-04-21 00:56:37','{\n    \"sidebars_widgets[footer-one-widgets]\": {\n        \"value\": [\n            \"nav_menu-3\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:56:37\"\n    }\n}','','','trash','closed','closed','','d4fa54dd-4f6d-42ec-b8b1-255a61932d2f','','','2019-04-21 00:56:37','2019-04-21 00:56:37','',0,'https://test.evergreenwellness.com/2019/04/21/d4fa54dd-4f6d-42ec-b8b1-255a61932d2f/',0,'customize_changeset','',0),(1085,1,'2019-04-20 18:54:26','2019-04-20 18:54:26','{\n    \"sidebars_widgets[footer-one-widgets]\": {\n        \"value\": [\n            \"nav_menu-3\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-20 18:54:26\"\n    },\n    \"widget_nav_menu[3]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToxOntzOjg6Im5hdl9tZW51IjtpOjk7fQ==\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"fe5c9154a9b9efa993461f9cd56af22c\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-20 18:54:26\"\n    }\n}','','','trash','closed','closed','','b24fe1da-8360-4332-939c-b063e9679438','','','2019-04-20 18:54:26','2019-04-20 18:54:26','',0,'https://test.evergreenwellness.com/2019/04/20/b24fe1da-8360-4332-939c-b063e9679438/',0,'customize_changeset','',0),(1086,1,'2019-04-20 22:14:37','0000-00-00 00:00:00','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: https://test.evergreenwellness.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','draft','closed','closed','','','','','2019-04-20 22:14:37','0000-00-00 00:00:00','',0,'https://test.evergreenwellness.com/?page_id=1086',0,'page','',0),(1087,1,'2019-04-20 22:43:20','0000-00-00 00:00:00','','Terms','','draft','closed','closed','','','','','2019-04-20 22:43:20','2019-04-20 22:43:20','',0,'https://test.evergreenwellness.com/?page_id=1087',0,'page','',0),(1088,1,'2019-04-20 22:43:19','2019-04-20 22:43:19','','Terms','','inherit','closed','closed','','1087-revision-v1','','','2019-04-20 22:43:19','2019-04-20 22:43:19','',1087,'https://test.evergreenwellness.com/2019/04/20/1087-revision-v1/',0,'revision','',0),(1089,1,'2019-04-20 23:28:48','2019-04-20 23:28:48','<h2>Terms</h2>		\n		<p> </p><p><strong>TERMS OF USE</strong> These Terms of Use (“Terms”) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.</p><p> </p><p><strong>Changes in Terms</strong></p><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.</p><p> </p><p><strong>Termination</strong></p><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.</p><p> </p><p><strong>Compliance with Laws</strong></p><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.</p><p> </p><p><strong>Content</strong></p><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the “Content”. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com’s intellectual property may not be used without evergreenwellness.com’s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.</p><p> </p><p><strong>Product Reviews</strong></p><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer’s experience is what an average or typical customer may expect to achieve.</p><p> </p><p><strong>Accounts</strong></p><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person’s username, password or other account information, or another person’s name, likeness, voice, image or photograph.</p><p> </p><p><strong>Disclaimer and Limitation of Liability as to the evergreenwellness.com</strong> <strong>Site and Content</strong></p><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS “AS IS,” WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE “AS IS” CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.</p><p> </p><p><strong>Electronic Communication</strong></p><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.</p><p> </p><p><strong>Linked Third Party Sites</strong></p><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.</p><p> </p><p><strong>Prices; Orders</strong></p><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.</p><p> </p><p><strong>Disclaimer and Limitation of Liability</strong></p><p>evergreenwellness.com provides the Site (including all Content) “as is” without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).</p><p> </p><p><strong>Hold Harmless and Indemnity</strong></p><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and/or consequential), suits, judgments, litigation costs and attorneys’ fees, of every kind and nature.</p><p> </p><p><strong>Dispute Resolution</strong></p><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.</p><p><em> </em></p><p> </p>','Terms','','publish','closed','closed','','terms','','','2019-04-21 01:28:18','2019-04-21 01:28:18','',0,'https://test.evergreenwellness.com/?page_id=1089',0,'page','',0),(1090,1,'2019-04-20 22:45:48','2019-04-20 22:45:48','','Terms','','inherit','closed','closed','','1089-revision-v1','','','2019-04-20 22:45:48','2019-04-20 22:45:48','',1089,'https://test.evergreenwellness.com/2019/04/20/1089-revision-v1/',0,'revision','',0),(1093,1,'2019-04-20 23:04:35','2019-04-20 23:04:35','','ConsentFormGet_WithFooter','','inherit','open','closed','','consentformget_withfooter','','','2019-04-20 23:04:35','2019-04-20 23:04:35','',1089,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/ConsentFormGet_WithFooter.pdf',0,'attachment','application/pdf',0),(1092,1,'2019-04-20 22:57:47','2019-04-20 22:57:47','<h2>Terms</h2>\n<strong>TERMS OF USE</strong>&nbsp;These Terms of Use (“Terms”) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.\n<ol>\n 	<li><strong>Changes in Terms</strong></li>\n</ol>\nevergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.\n<ol>\n 	<li><strong>Termination</strong></li>\n</ol>\nevergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.\n<ol>\n 	<li><strong>Compliance with Laws</strong></li>\n</ol>\nYou agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.\n<ol>\n 	<li><strong>Content</strong></li>\n</ol>\nThe text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the “Content”. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com’s intellectual property may not be used without evergreenwellness.com’s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.\n<ol>\n 	<li><strong>Product Reviews</strong></li>\n</ol>\nProduct reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer’s experience is what an average or typical customer may expect to achieve.\n<ol>\n 	<li><strong>Accounts</strong></li>\n</ol>\nSome services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person’s username, password or other account information, or another person’s name, likeness, voice, image or photograph.\n<ol>\n 	<li><strong>Disclaimer and Limitation of Liability as to the&nbsp;evergreenwellness.com</strong>&nbsp;<strong>Site and Content</strong></li>\n</ol>\nUNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS “AS IS,” WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE “AS IS” CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.\n<ol>\n 	<li><strong>Electronic Communication</strong></li>\n</ol>\nBy using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.\n<ol>\n 	<li><strong>Linked Third Party Sites</strong></li>\n</ol>\nLinks to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.\n<ol>\n 	<li><strong>Prices; Orders</strong></li>\n</ol>\nevergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.\n<ol>\n 	<li><strong>Disclaimer and Limitation of Liability</strong></li>\n</ol>\nevergreenwellness.com provides the Site (including all Content) “as is” without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).\n<ol>\n 	<li><strong>Hold Harmless and Indemnity</strong></li>\n</ol>\nTo the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and/or consequential), suits, judgments, litigation costs and attorneys’ fees, of every kind and nature.\n<ol>\n 	<li><strong>Dispute Resolution</strong></li>\n</ol>\nBy using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.\n\n<em>&nbsp;</em>','Terms','','inherit','closed','closed','','1089-revision-v1','','','2019-04-20 22:57:47','2019-04-20 22:57:47','',1089,'https://test.evergreenwellness.com/2019/04/20/1089-revision-v1/',0,'revision','',0),(1097,1,'2019-04-20 23:31:06','2019-04-20 23:31:06','<h2>Terms</h2>		\n		<p> </p><p><strong>TERMS OF USE</strong> These Terms of Use (“Terms”) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.</p><p> </p><p><strong>Changes in Terms</strong></p><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.</p><p> </p><p><strong>Termination</strong></p><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.</p><p> </p><p><strong>Compliance with Laws</strong></p><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.</p><p> </p><p><strong>Content</strong></p><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the “Content”. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com’s intellectual property may not be used without evergreenwellness.com’s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.</p><p> </p><p><strong>Product Reviews</strong></p><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer’s experience is what an average or typical customer may expect to achieve.</p><p> </p><p><strong>Accounts</strong></p><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person’s username, password or other account information, or another person’s name, likeness, voice, image or photograph.</p><p> </p><p><strong>Disclaimer and Limitation of Liability as to the evergreenwellness.com</strong> <strong>Site and Content</strong></p><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS “AS IS,” WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE “AS IS” CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.</p><p> </p><p><strong>Electronic Communication</strong></p><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.</p><p> </p><p><strong>Linked Third Party Sites</strong></p><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.</p><p> </p><p><strong>Prices; Orders</strong></p><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.</p><p> </p><p><strong>Disclaimer and Limitation of Liability</strong></p><p>evergreenwellness.com provides the Site (including all Content) “as is” without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).</p><p> </p><p><strong>Hold Harmless and Indemnity</strong></p><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and/or consequential), suits, judgments, litigation costs and attorneys’ fees, of every kind and nature.</p><p> </p><p><strong>Dispute Resolution</strong></p><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.</p><p><em> </em></p><p> </p>','Terms','','inherit','closed','closed','','1089-revision-v1','','','2019-04-20 23:31:06','2019-04-20 23:31:06','',1089,'https://test.evergreenwellness.com/2019/04/20/1089-revision-v1/',0,'revision','',0),(1095,1,'2019-04-20 23:29:44','2019-04-20 23:29:44','<h1>We offer better Traditional Chinese Medicine services</h1>\n<h6>Acupuncture and Chinese herbal Medicine</h6>\n<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\nMake an appointment\n</a>\n<a href=\"#more-features\" role=\"button\">\nContact us\n</a>\n<h2>Terms</h2>\n<strong>TERMS OF USE</strong>&nbsp;These Terms of Use (“Terms”) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.\n\n<strong>Changes in Terms</strong>\n\nevergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.\n\n<strong>Termination</strong>\n\nevergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.\n\n<strong>Compliance with Laws</strong>\n\nYou agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.\n\n<strong>Content</strong>\n\nThe text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the “Content”. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com’s intellectual property may not be used without evergreenwellness.com’s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.\n\n<strong>Product Reviews</strong>\n\nProduct reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer’s experience is what an average or typical customer may expect to achieve.\n\n<strong>Accounts</strong>\n\nSome services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person’s username, password or other account information, or another person’s name, likeness, voice, image or photograph.\n\n<strong>Disclaimer and Limitation of Liability as to the&nbsp;evergreenwellness.com</strong>&nbsp;<strong>Site and Content</strong>\n\nUNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS “AS IS,” WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE “AS IS” CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.\n\n<strong>Electronic Communication</strong>\n\nBy using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.\n\n<strong>Linked Third Party Sites</strong>\n\nLinks to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.\n\n<strong>Prices; Orders</strong>\n\nevergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.\n\n<strong>Disclaimer and Limitation of Liability</strong>\n\nevergreenwellness.com provides the Site (including all Content) “as is” without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).\n\n<strong>Hold Harmless and Indemnity</strong>\n\nTo the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and/or consequential), suits, judgments, litigation costs and attorneys’ fees, of every kind and nature.\n\n<strong>Dispute Resolution</strong>\n\nBy using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.\n\n<em>&nbsp;</em>','Terms','','inherit','closed','closed','','1089-revision-v1','','','2019-04-20 23:29:44','2019-04-20 23:29:44','',1089,'https://test.evergreenwellness.com/2019/04/20/1089-revision-v1/',0,'revision','',0),(1094,1,'2019-04-20 23:29:05','2019-04-20 23:29:05','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Acupuncture and Chinese herbal Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Terms</h2>		\n		<p> </p><p><strong>TERMS OF USE</strong> These Terms of Use (“Terms”) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.</p><p> </p><p><strong>Changes in Terms</strong></p><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.</p><p> </p><p><strong>Termination</strong></p><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.</p><p> </p><p><strong>Compliance with Laws</strong></p><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.</p><p> </p><p><strong>Content</strong></p><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the “Content”. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com’s intellectual property may not be used without evergreenwellness.com’s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.</p><p> </p><p><strong>Product Reviews</strong></p><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer’s experience is what an average or typical customer may expect to achieve.</p><p> </p><p><strong>Accounts</strong></p><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person’s username, password or other account information, or another person’s name, likeness, voice, image or photograph.</p><p> </p><p><strong>Disclaimer and Limitation of Liability as to the evergreenwellness.com</strong> <strong>Site and Content</strong></p><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS “AS IS,” WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE “AS IS” CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.</p><p> </p><p><strong>Electronic Communication</strong></p><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.</p><p> </p><p><strong>Linked Third Party Sites</strong></p><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.</p><p> </p><p><strong>Prices; Orders</strong></p><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.</p><p> </p><p><strong>Disclaimer and Limitation of Liability</strong></p><p>evergreenwellness.com provides the Site (including all Content) “as is” without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).</p><p> </p><p><strong>Hold Harmless and Indemnity</strong></p><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and/or consequential), suits, judgments, litigation costs and attorneys’ fees, of every kind and nature.</p><p> </p><p><strong>Dispute Resolution</strong></p><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.</p><p><em> </em></p><p> </p>','Terms','','inherit','closed','closed','','1089-revision-v1','','','2019-04-20 23:29:05','2019-04-20 23:29:05','',1089,'https://test.evergreenwellness.com/2019/04/20/1089-revision-v1/',0,'revision','',0),(1098,1,'2019-04-20 23:32:40','2019-04-20 23:32:40','<h2>Privacy Policy</h2>		\n		<p><strong>Who we are</strong></p><p>Our website address is: https://evergreenwellness.com/. We are dedicated to providing education and services in Chinese medicine.</p><p><strong>What personal data we collect and why we collect it</strong></p><p><strong>Comments</strong></p><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: <a href=\"https://automattic.com/privacy/\">https://automattic.com/privacy/</a>. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><p><strong>Media</strong></p><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><p><strong>Contact forms</strong></p><p>You can reach out to us if you have any questions or concerns on our contact page here: <a href=\"https://test.evergreenwellness.com/#contact\"><strong>https://evergreenwellness.com/contact/</strong></a></p><p><strong>Cookies</strong></p><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select “Remember Me”, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><p>Embedded content from other websites</p><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.</p><p>Who we share your data with</p><p>We use PayPal to process your payments, so be sure to check out PayPal‘s privacy policies here:</p><p><strong><a href=\"https://www.paypal.com/us/webapps/mpp/ua/privacy-full\">https://www.paypal.com/us/webapps/mpp/ua/privacy-full</a></strong></p><p><strong>How long we retain your data</strong></p><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><p><strong>What rights you have over your data</strong></p><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><p><strong>Where we send your data</strong></p><p>Visitor comments may be checked through an automated spam detection service.</p><p><strong>Your contact information</strong></p><p>We collect only the contact information you submit in the registration form such as your email and username. If you purchase a product or sign up for a program on our site that requires your phone number or address we may also collect that for those purposes as well.</p><p>If you wish to review or for any of your data to be erased from evergreenwellness.com feel free to reach out and we can take care of that for you.</p>','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2019-04-21 01:50:06','2019-04-21 01:50:06','',0,'https://test.evergreenwellness.com/?page_id=1098',0,'page','',0),(1099,1,'2019-04-20 23:32:39','2019-04-20 23:32:39','','Privacy Policy','','inherit','closed','closed','','1098-revision-v1','','','2019-04-20 23:32:39','2019-04-20 23:32:39','',1098,'https://test.evergreenwellness.com/2019/04/20/1098-revision-v1/',0,'revision','',0),(1100,1,'2019-04-20 23:38:46','2019-04-20 23:38:46','<h2>Privacy Policy</h2>		\n		<p><strong>Who we are</strong></p><p>Our website address is: https://evergreenwellness.com/. We are dedicated to providing education and services in Chinese medicine.</p><p><strong>What personal data we collect and why we collect it</strong></p><p><strong>Comments</strong></p><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: <a href=\"https://automattic.com/privacy/\">https://automattic.com/privacy/</a>. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><p><strong>Media</strong></p><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><p><strong>Contact forms</strong></p><p>You can reach out to us if you have any questions or concerns on our contact page here: <a href=\"https://ibreathin.com/contact/\"><strong>https://evergreenwellness.com/contact/</strong></a></p><p><strong>Cookies</strong></p><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select “Remember Me”, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><p>Embedded content from other websites</p><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.</p><p>Who we share your data with</p><p>We use PayPal to process your payments, so be sure to check out PayPal‘s privacy policies here:</p><p><strong><a href=\"https://www.paypal.com/us/webapps/mpp/ua/privacy-full\">https://www.paypal.com/us/webapps/mpp/ua/privacy-full</a></strong></p><p> </p><p><strong>How long we retain your data</strong></p><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><p><strong>What rights you have over your data</strong></p><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><p><strong>Where we send your data</strong></p><p>Visitor comments may be checked through an automated spam detection service.</p><p><strong>Your contact information</strong></p><p>We collect only the contact information you submit in the registration form such as your email and username. If you purchase a product or sign up for a program on our site that requires your phone number or address we may also collect that for those purposes as well.</p><p>If you wish to review or for any of your data to be erased from evergreenwellness.com feel free to reach out and we can take care of that for you.</p><p> </p><p> </p>','Privacy Policy','','inherit','closed','closed','','1098-revision-v1','','','2019-04-20 23:38:46','2019-04-20 23:38:46','',1098,'https://test.evergreenwellness.com/2019/04/20/1098-revision-v1/',0,'revision','',0),(1101,1,'2019-04-20 23:40:00','2019-04-20 23:40:00','<h2>Privacy Policy</h2>		\n		<p><strong>Who we are</strong></p><p>Our website address is: https://evergreenwellness.com/. We are dedicated to providing education and services in Chinese medicine.</p><p><strong>What personal data we collect and why we collect it</strong></p><p><strong>Comments</strong></p><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: <a href=\"https://automattic.com/privacy/\">https://automattic.com/privacy/</a>. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><p><strong>Media</strong></p><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><p><strong>Contact forms</strong></p><p>You can reach out to us if you have any questions or concerns on our contact page here: <a href=\"https://ibreathin.com/contact/\"><strong>https://evergreenwellness.com/contact/</strong></a></p><p><strong>Cookies</strong></p><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select “Remember Me”, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><p>Embedded content from other websites</p><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.</p><p>Who we share your data with</p><p>We use PayPal to process your payments, so be sure to check out PayPal‘s privacy policies here:</p><p><strong><a href=\"https://www.paypal.com/us/webapps/mpp/ua/privacy-full\">https://www.paypal.com/us/webapps/mpp/ua/privacy-full</a></strong></p><p> </p><p><strong>How long we retain your data</strong></p><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><p><strong>What rights you have over your data</strong></p><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><p><strong>Where we send your data</strong></p><p>Visitor comments may be checked through an automated spam detection service.</p><p><strong>Your contact information</strong></p><p>We collect only the contact information you submit in the registration form such as your email and username. If you purchase a product or sign up for a program on our site that requires your phone number or address we may also collect that for those purposes as well.</p><p>If you wish to review or for any of your data to be erased from evergreenwellness.com feel free to reach out and we can take care of that for you.</p><p> </p><p> </p>','Privacy Policy','','inherit','closed','closed','','1098-revision-v1','','','2019-04-20 23:40:00','2019-04-20 23:40:00','',1098,'https://test.evergreenwellness.com/2019/04/20/1098-revision-v1/',0,'revision','',0),(1102,1,'2019-04-21 00:39:03','2019-04-21 00:39:03','{\n    \"neve::footer_copyright_content\": {\n        \"value\": \"<p>Copyright \\u00a9 1998 - 2019, Evergreen Wellness Center, LLC, all rights reserved</p>\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:39:03\"\n    }\n}','','','trash','closed','closed','','88b162e4-2c88-4595-8836-110c0b69ffbe','','','2019-04-21 00:39:03','2019-04-21 00:39:03','',0,'https://test.evergreenwellness.com/2019/04/21/88b162e4-2c88-4595-8836-110c0b69ffbe/',0,'customize_changeset','',0),(1103,1,'2019-04-21 00:45:56','2019-04-21 00:45:56','{\n    \"sidebars_widgets[footer-one-widgets]\": {\n        \"value\": [\n            \"nav_menu-3\",\n            \"nav_menu-5\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:40:56\"\n    },\n    \"widget_nav_menu[5]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToxOntzOjg6Im5hdl9tZW51IjtpOjk7fQ==\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"fe5c9154a9b9efa993461f9cd56af22c\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:40:56\"\n    },\n    \"nav_menu_item[1084]\": {\n        \"value\": false,\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:42:56\"\n    },\n    \"nav_menu_item[-5844417751916890000]\": {\n        \"value\": {\n            \"object_id\": 1001,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 5,\n            \"type\": \"post_type\",\n            \"title\": \"Q&A\",\n            \"url\": \"https://test.evergreenwellness.com/q-a/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Q-A\",\n            \"nav_menu_term_id\": 9,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:43:56\"\n    },\n    \"sidebars_widgets[footer-two-widgets]\": {\n        \"value\": [\n            \"nav_menu-6\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:44:56\"\n    },\n    \"neve::footer-two-widgets_component_align\": {\n        \"value\": \"center\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:44:56\"\n    },\n    \"widget_nav_menu[6]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjEwOiJGb290ZXIgVHdvIjt9\",\n            \"title\": \"Footer Two\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"35a1f3258fdcd58456872b3310db5089\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:45:56\"\n    }\n}','','','trash','closed','closed','','69f399d4-38ec-4942-a88e-68fe9fa00679','','','2019-04-21 00:45:56','2019-04-21 00:45:56','',0,'https://test.evergreenwellness.com/?p=1103',0,'customize_changeset','',0),(1114,1,'2019-04-21 00:59:00','2019-04-21 00:59:00',' ','','','publish','closed','closed','','1114','','','2019-04-21 00:59:00','2019-04-21 00:59:00','',0,'https://test.evergreenwellness.com/2019/04/21/1114/',3,'nav_menu_item','',0),(1113,1,'2019-04-21 00:59:00','2019-04-21 00:59:00',' ','','','publish','closed','closed','','1113','','','2019-04-21 00:59:00','2019-04-21 00:59:00','',0,'https://test.evergreenwellness.com/2019/04/21/1113/',2,'nav_menu_item','',0),(1112,1,'2019-04-21 00:59:00','2019-04-21 00:59:00','','Home','','publish','closed','closed','','home','','','2019-04-21 00:59:00','2019-04-21 00:59:00','',0,'https://test.evergreenwellness.com/2019/04/21/home/',1,'nav_menu_item','',0),(1108,1,'2019-04-21 00:50:59','2019-04-21 00:50:59','{\n    \"sidebars_widgets[footer-two-widgets]\": {\n        \"value\": [\n            \"nav_menu-6\",\n            \"nav_menu-8\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:50:59\"\n    },\n    \"widget_nav_menu[8]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToxOntzOjg6Im5hdl9tZW51IjtpOjEwO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"efef1140dabf3895fd6e39a9f5609a5d\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:50:59\"\n    }\n}','','','trash','closed','closed','','143ab93b-5388-4cd0-bad7-d9ec7518abe6','','','2019-04-21 00:50:59','2019-04-21 00:50:59','',0,'https://test.evergreenwellness.com/2019/04/21/143ab93b-5388-4cd0-bad7-d9ec7518abe6/',0,'customize_changeset','',0),(1109,1,'2019-04-21 00:55:14','2019-04-21 00:55:14','{\n    \"sidebars_widgets[footer-two-widgets]\": {\n        \"value\": [\n            \"nav_menu-6\",\n            \"nav_menu-8\",\n            \"nav_menu-10\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:53:58\"\n    },\n    \"neve::nav_menu_locations[footer]\": {\n        \"value\": 10,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:53:58\"\n    },\n    \"widget_nav_menu[10]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToxOntzOjg6Im5hdl9tZW51IjtpOjEwO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"efef1140dabf3895fd6e39a9f5609a5d\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:53:58\"\n    },\n    \"nav_menu[9]\": {\n        \"value\": false,\n        \"type\": \"nav_menu\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 00:55:14\"\n    }\n}','','','trash','closed','closed','','e8965024-e243-4026-b18b-0c8f0899f611','','','2019-04-21 00:55:14','2019-04-21 00:55:14','',0,'https://test.evergreenwellness.com/?p=1109',0,'customize_changeset','',0),(1115,1,'2019-04-21 00:59:00','2019-04-21 00:59:00',' ','','','publish','closed','closed','','1115','','','2019-04-21 00:59:00','2019-04-21 00:59:00','',0,'https://test.evergreenwellness.com/2019/04/21/1115/',4,'nav_menu_item','',0),(1116,1,'2019-04-21 00:59:00','2019-04-21 00:59:00','','Q&A','','publish','closed','closed','','qa','','','2019-04-21 00:59:00','2019-04-21 00:59:00','',0,'https://test.evergreenwellness.com/2019/04/21/qa/',5,'nav_menu_item','',0),(1117,1,'2019-04-21 01:00:54','2019-04-21 01:00:54','{\n    \"neve::nav_menu_locations[footer]\": {\n        \"value\": -6262444163968922000,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:00:10\"\n    },\n    \"nav_menu[-6262444163968922000]\": {\n        \"value\": {\n            \"name\": \"Footer Two\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"auto_add\": false\n        },\n        \"type\": \"nav_menu\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:00:10\"\n    },\n    \"nav_menu_item[-9122272056293714000]\": {\n        \"value\": {\n            \"object_id\": 1077,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 1,\n            \"type\": \"post_type\",\n            \"title\": \"Influencer\",\n            \"url\": \"https://test.evergreenwellness.com/influencer/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Influencer\",\n            \"nav_menu_term_id\": -6262444163968922000,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:00:10\"\n    },\n    \"nav_menu_item[-8843099260992537000]\": {\n        \"value\": {\n            \"object_id\": 1089,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 2,\n            \"type\": \"post_type\",\n            \"title\": \"Terms\",\n            \"url\": \"https://test.evergreenwellness.com/terms/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Terms\",\n            \"nav_menu_term_id\": -6262444163968922000,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:00:10\"\n    },\n    \"nav_menu_item[-5667848940987537000]\": {\n        \"value\": {\n            \"object_id\": 1098,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 3,\n            \"type\": \"post_type\",\n            \"title\": \"Privacy Policy\",\n            \"url\": \"https://test.evergreenwellness.com/privacy-policy/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Privacy Policy\",\n            \"nav_menu_term_id\": -6262444163968922000,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:00:10\"\n    }\n}','','','trash','closed','closed','','031ac761-3c04-43f7-a504-2d1a49507437','','','2019-04-21 01:00:54','2019-04-21 01:00:54','',0,'https://test.evergreenwellness.com/?p=1117',0,'customize_changeset','',0),(1118,1,'2019-04-21 01:00:54','2019-04-21 01:00:54',' ','','','publish','closed','closed','','1118','','','2019-04-21 01:00:54','2019-04-21 01:00:54','',0,'https://test.evergreenwellness.com/2019/04/21/1118/',1,'nav_menu_item','',0),(1119,1,'2019-04-21 01:00:54','2019-04-21 01:00:54',' ','','','publish','closed','closed','','1119','','','2019-04-21 01:00:54','2019-04-21 01:00:54','',0,'https://test.evergreenwellness.com/2019/04/21/1119/',2,'nav_menu_item','',0),(1120,1,'2019-04-21 01:00:54','2019-04-21 01:00:54',' ','','','publish','closed','closed','','1120','','','2019-04-21 01:00:54','2019-04-21 01:00:54','',0,'https://test.evergreenwellness.com/2019/04/21/1120/',3,'nav_menu_item','',0),(1121,1,'2019-04-21 01:03:04','2019-04-21 01:03:04','{\n    \"neve::nav_menu_locations[footer]\": {\n        \"value\": 11,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:03:04\"\n    }\n}','','','trash','closed','closed','','2eceed62-3c36-4970-a520-c61610931d0f','','','2019-04-21 01:03:04','2019-04-21 01:03:04','',0,'https://test.evergreenwellness.com/2019/04/21/2eceed62-3c36-4970-a520-c61610931d0f/',0,'customize_changeset','',0),(1122,1,'2019-04-21 01:04:18','2019-04-21 01:04:18','{\n    \"sidebars_widgets[footer-one-widgets]\": {\n        \"value\": [\n            \"nav_menu-3\",\n            \"nav_menu-12\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:04:18\"\n    },\n    \"widget_nav_menu[12]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToxOntzOjg6Im5hdl9tZW51IjtpOjExO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"6d67c30e37bbe431a658b72d09b86709\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:04:18\"\n    }\n}','','','trash','closed','closed','','bb8455d8-c61e-46a1-b646-bbcacee9238b','','','2019-04-21 01:04:18','2019-04-21 01:04:18','',0,'https://test.evergreenwellness.com/2019/04/21/bb8455d8-c61e-46a1-b646-bbcacee9238b/',0,'customize_changeset','',0),(1123,1,'2019-04-21 01:05:44','2019-04-21 01:05:44','{\n    \"sidebars_widgets[wp_inactive_widgets]\": {\n        \"value\": [\n            \"nav_menu-6\",\n            \"nav_menu-8\",\n            \"nav_menu-12\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:05:44\"\n    },\n    \"sidebars_widgets[footer-two-widgets]\": {\n        \"value\": [\n            \"nav_menu-10\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:05:44\"\n    },\n    \"neve::footer-one-widgets_component_align\": {\n        \"value\": \"left\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:05:44\"\n    },\n    \"widget_nav_menu[3]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToxOntzOjg6Im5hdl9tZW51IjtpOjExO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"6d67c30e37bbe431a658b72d09b86709\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:05:44\"\n    },\n    \"widget_nav_menu[10]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToxOntzOjg6Im5hdl9tZW51IjtpOjEyO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"63f37ce72106a58c9a7c179361bbd398\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:05:44\"\n    },\n    \"sidebars_widgets[footer-one-widgets]\": {\n        \"value\": [\n            \"nav_menu-3\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:05:44\"\n    }\n}','','','trash','closed','closed','','583d9559-467b-4926-873a-47c4942d4c50','','','2019-04-21 01:05:44','2019-04-21 01:05:44','',0,'https://test.evergreenwellness.com/?p=1123',0,'customize_changeset','',0),(1124,1,'2019-04-21 01:12:24','2019-04-21 01:12:24','{\n    \"sidebars_widgets[footer-three-widgets]\": {\n        \"value\": [\n            \"text-3\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:07:54\"\n    },\n    \"neve::footer-three-widgets_component_align\": {\n        \"value\": \"right\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:07:54\"\n    },\n    \"widget_text[3]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjI1OiJFdmVyZ3JlZW4gV2VsbG5lc3MgQ2VudGVyIjtzOjQ6InRleHQiO3M6ODU6IlBob25lOiAoMzE2KSA2OTEgLSA4ODExDQoNCkFkZHJlc3M6IDE1MjAgUy4gV2ViYiBSb2FkLA0KDQpTdWl0ZSAxNjAgV2ljaGl0YSwgS1MgNjcyMDciO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n            \"title\": \"Evergreen Wellness Center\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"569cf9526b37bc6a4efb1160310ea774\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:11:54\"\n    }\n}','','','trash','closed','closed','','950f4ad4-d28f-4845-9f0f-cb6f3665bd3e','','','2019-04-21 01:12:24','2019-04-21 01:12:24','',0,'https://test.evergreenwellness.com/?p=1124',0,'customize_changeset','',0),(1125,1,'2019-04-21 01:14:14','2019-04-21 01:14:14','{\n    \"widget_text[3]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjI1OiJFdmVyZ3JlZW4gV2VsbG5lc3MgQ2VudGVyIjtzOjQ6InRleHQiO3M6ODU6IlBob25lOiAoMzE2KSA2OTEgLSA4ODExDQoNCkFkZHJlc3M6IDE1MjAgUy4gV2ViYiBSb2FkLCBTdWl0ZSAxNjANCg0KV2ljaGl0YSwgS1MgNjcyMDciO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n            \"title\": \"Evergreen Wellness Center\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"f0deaf636f34258902809fc52f2b78b4\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:14:14\"\n    }\n}','','','trash','closed','closed','','c1c730df-4f1f-46b0-8c64-8d1a6368cc41','','','2019-04-21 01:14:14','2019-04-21 01:14:14','',0,'https://test.evergreenwellness.com/2019/04/21/c1c730df-4f1f-46b0-8c64-8d1a6368cc41/',0,'customize_changeset','',0),(1126,1,'2019-04-21 01:19:14','2019-04-21 01:19:14','{\n    \"nav_menu_item[235]\": {\n        \"value\": {\n            \"menu_item_parent\": 0,\n            \"object_id\": 235,\n            \"object\": \"custom\",\n            \"type\": \"custom\",\n            \"type_label\": \"Custom Link\",\n            \"title\": \"Weight Loss\",\n            \"url\": \"\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"nav_menu_term_id\": 7,\n            \"position\": 4,\n            \"status\": \"publish\",\n            \"original_title\": \"\",\n            \"_invalid\": false\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:18:28\"\n    },\n    \"nav_menu_item[239]\": {\n        \"value\": {\n            \"menu_item_parent\": 0,\n            \"object_id\": 239,\n            \"object\": \"custom\",\n            \"type\": \"custom\",\n            \"type_label\": \"Custom Link\",\n            \"title\": \"Shop\",\n            \"url\": \"\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"nav_menu_term_id\": 7,\n            \"position\": 5,\n            \"status\": \"publish\",\n            \"original_title\": \"\",\n            \"_invalid\": false\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:19:14\"\n    }\n}','','','trash','closed','closed','','d19c7e5e-c39f-44ff-9f69-6c541ed38d69','','','2019-04-21 01:19:14','2019-04-21 01:19:14','',0,'https://test.evergreenwellness.com/?p=1126',0,'customize_changeset','',0),(1127,1,'2019-04-21 01:21:04','2019-04-21 01:21:04','{\n    \"widget_text[3]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjI1OiJFdmVyZ3JlZW4gV2VsbG5lc3MgQ2VudGVyIjtzOjQ6InRleHQiO3M6MTE5OiI8c3Ryb25nPlBob25lOjwvc3Ryb25nPiAoMzE2KSA2OTEgLSA4ODExDQoNCjxzdHJvbmc+QWRkcmVzczo8L3N0cm9uZz4gMTUyMCBTLiBXZWJiIFJvYWQsIFN1aXRlIDE2MA0KDQpXaWNoaXRhLCBLUyA2NzIwNyI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n            \"title\": \"Evergreen Wellness Center\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"1a15257902f7f8b36f935d3941886134\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:21:04\"\n    }\n}','','','trash','closed','closed','','d6c954b3-9451-4707-8ba5-5f5870ef7c2f','','','2019-04-21 01:21:04','2019-04-21 01:21:04','',0,'https://test.evergreenwellness.com/2019/04/21/d6c954b3-9451-4707-8ba5-5f5870ef7c2f/',0,'customize_changeset','',0),(1128,1,'2019-04-21 01:24:00','2019-04-21 01:24:00','<h2>Terms</h2>		\n		<p> </p><p><strong>TERMS OF USE</strong> These Terms of Use (“Terms”) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.</p><p> </p><p><strong>Changes in Terms</strong></p><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.</p><p> </p><p><strong>Termination</strong></p><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.</p><p> </p><p><strong>Compliance with Laws</strong></p><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.</p><p> </p><p><strong>Content</strong></p><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the “Content”. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com’s intellectual property may not be used without evergreenwellness.com’s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.</p><p> </p><p><strong>Product Reviews</strong></p><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer’s experience is what an average or typical customer may expect to achieve.</p><p> </p><p><strong>Accounts</strong></p><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person’s username, password or other account information, or another person’s name, likeness, voice, image or photograph.</p><p> </p><p><strong>Disclaimer and Limitation of Liability as to the evergreenwellness.com</strong> <strong>Site and Content</strong></p><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS “AS IS,” WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE “AS IS” CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.</p><p> </p><p><strong>Electronic Communication</strong></p><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.</p><p> </p><p><strong>Linked Third Party Sites</strong></p><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.</p><p> </p><p><strong>Prices; Orders</strong></p><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.</p><p> </p><p><strong>Disclaimer and Limitation of Liability</strong></p><p>evergreenwellness.com provides the Site (including all Content) “as is” without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).</p><p> </p><p><strong>Hold Harmless and Indemnity</strong></p><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and/or consequential), suits, judgments, litigation costs and attorneys’ fees, of every kind and nature.</p><p> </p><p><strong>Dispute Resolution</strong></p><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.</p><p><em> </em></p><p> </p>','Terms','','inherit','closed','closed','','1089-revision-v1','','','2019-04-21 01:24:00','2019-04-21 01:24:00','',1089,'https://test.evergreenwellness.com/2019/04/21/1089-revision-v1/',0,'revision','',0),(1129,1,'2019-04-21 01:26:54','2019-04-21 01:26:54','<h2>Privacy Policy</h2>		\n		<p><strong>Who we are</strong></p><p>Our website address is: https://evergreenwellness.com/. We are dedicated to providing education and services in Chinese medicine.</p><p><strong>What personal data we collect and why we collect it</strong></p><p><strong>Comments</strong></p><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: <a href=\"https://automattic.com/privacy/\">https://automattic.com/privacy/</a>. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><p><strong>Media</strong></p><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><p><strong>Contact forms</strong></p><p>You can reach out to us if you have any questions or concerns on our contact page here: <a href=\"https://ibreathin.com/contact/\"><strong>https://evergreenwellness.com/contact/</strong></a></p><p><strong>Cookies</strong></p><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select “Remember Me”, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><p>Embedded content from other websites</p><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.</p><p>Who we share your data with</p><p>We use PayPal to process your payments, so be sure to check out PayPal‘s privacy policies here:</p><p><strong><a href=\"https://www.paypal.com/us/webapps/mpp/ua/privacy-full\">https://www.paypal.com/us/webapps/mpp/ua/privacy-full</a></strong></p><p> </p><p><strong>How long we retain your data</strong></p><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><p><strong>What rights you have over your data</strong></p><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><p><strong>Where we send your data</strong></p><p>Visitor comments may be checked through an automated spam detection service.</p><p><strong>Your contact information</strong></p><p>We collect only the contact information you submit in the registration form such as your email and username. If you purchase a product or sign up for a program on our site that requires your phone number or address we may also collect that for those purposes as well.</p><p>If you wish to review or for any of your data to be erased from evergreenwellness.com feel free to reach out and we can take care of that for you.</p><p> </p><p> </p>','Privacy Policy','','inherit','closed','closed','','1098-revision-v1','','','2019-04-21 01:26:54','2019-04-21 01:26:54','',1098,'https://test.evergreenwellness.com/2019/04/21/1098-revision-v1/',0,'revision','',0),(1130,1,'2019-04-21 01:28:18','2019-04-21 01:28:18','<h2>Terms</h2>		\n		<p> </p><p><strong>TERMS OF USE</strong> These Terms of Use (“Terms”) govern all use of evergreenwellness.com and other sites owned or operated evergreenwellness.com. By using and accessing the Site, you agree to these Terms, other policies, and all applicable laws and regulations. evergreenwellness.com reserves the right to suspend or terminate your account and your ability to use the Site or portion thereof for failure to comply with these Terms or any Separate Terms related to a service, for infringing copyright, or for any other reason.</p><p> </p><p><strong>Changes in Terms</strong></p><p>evergreenwellness.com has the sole right at any time and without prior notice to revise these Terms. evergreenwellness.com will post changes on the Site and it is your responsibility to review these Terms and any modifications.</p><p> </p><p><strong>Termination</strong></p><p>evergreenwellness.com has the right at any time and without prior notice to terminate some or all of evergreenwellness.com services, any feature or portion thereof, or any products or services offered, and to terminate your right to access or use evergreenwellness.com services or any feature or portion thereof.</p><p> </p><p><strong>Compliance with Laws</strong></p><p>You agree to comply with all applicable laws and regulations regarding your use of the Site. You must be at least 18 years old to use evergreenwellness.com.</p><p> </p><p><strong>Content</strong></p><p>The text, images, photographs, graphics, videos, logos, illustrations, descriptions, data, and other materials on the Site, as well as the selection, assembly, and arrangement thereof, are referred to collectively as the “Content”. The Content may contain errors, omissions, or may be out of date. evergreenwellness.com may change, delete, or update Content at any time. The Content is provided for informational purposes only and is not binding on evergreenwellness.com. All content, logos, graphics, pages, scripts, and service names included in or made available through any Site are subject to trade dress, trademarks, service marks, and/or copyright law and other laws that protect intellectual property in the U.S. and other countries. evergreenwellness.com’s intellectual property may not be used without evergreenwellness.com’s written permission. All other trademarks and service marks not owned by evergreenwellness.com that appear in any Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by evergreenwellness.com. You may view and use the Content for your personal information and for ordering and for no other purpose. evergreenwellness.com does not grant to you or any person any right to use, reproduce, copy, modify, transmit, display, publish, sell, license, create derivative works, publicly perform, or distribute by any means, method, or process whatsoever, now known or hereafter developed, any of the Content on or transmitted through the Site.</p><p> </p><p><strong>Product Reviews</strong></p><p>Product reviews appearing on the Site are prepared by third-parties (including, but not limited to, review pages, message boards, forums, text files, chats, etc.). evergreenwellness.com has not determined whether a specific reviewer’s experience is what an average or typical customer may expect to achieve.</p><p> </p><p><strong>Accounts</strong></p><p>Some services on the Site permit or require you to create an account to participate or to secure additional benefits. You agree to provide, maintain and update true, accurate, current and complete information about yourself as prompted by our registration processes. You shall not impersonate any person or entity or misrepresent your identity or affiliation with any person or entity, including using another person’s username, password or other account information, or another person’s name, likeness, voice, image or photograph.</p><p> </p><p><strong>Disclaimer and Limitation of Liability as to the evergreenwellness.com</strong> <strong>Site and Content</strong></p><p>UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM MAKES NO WARRANTIES OR REPRESENTATIONS WHATSOEVER WITH RESPECT TO EVERGREENWELLNESS.COM, ANY LINKED SITE OR ITS CONTENT, INCLUDING THE AVAILABILITY OF ANY SITE OR THE CONTENT, INFORMATION, AND MATERIALS ON IT OR THE ACCURACY, COMPLETENESS, OR TIMELINESS OF THAT CONTENT, INFORMATION, AND MATERIALS. EVERGREENWELLNESS.COM ALSO DOES NOT WARRANT OR REPRESENT THAT YOUR ACCESS TO OR USE OF EVERGREENWELLNESS.COM OR ANY LINKED SITE WILL BE UNINTERRUPTED OR FREE OF ERRORS OR OMISSIONS, THAT DEFECTS WILL BE CORRECTED, OR THAT EVERGREENWELLNESS.COM OR ANY LINKED SITE IS FREE OF COMPUTER VIRUSES OR OTHER HARMFUL COMPONENTS. WITHOUT LIMITING THE FOREGOING, ALL CONTENT PROVIDED ON OR THROUGH EVERGREENWELLNESS.COM IS PROVIDED TO USERS “AS IS,” WITH NO WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, SECURITY, OR ACCURACY. THE “AS IS” CONDITION OF CONTENT IS EXPRESSLY MADE A CONDITION OF ANY TRANSACTION ARISING THROUGH OR AS A RESULT OF THE EVERGREENWELLNESS.COM SERVICES. UNLESS PROHIBITED BY APPLICABLE LAW, EVERGREENWELLNESS.COM SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR EXEMPLARY DAMAGES ARISING OUT OF OR IN CONNECTION WITH USE OF THE APPLICATION, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE, PRODUCT LIABILITY OR OTHERWISE), OR ANY OTHER PECUNIARY LOSS, WHETHER OR NOT EVERGREENWELLNESS.COM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. UNDER NO CIRCUMSTANCES SHALL EVERGREENWELLNESS.COM BE LIABLE TO YOU FOR ANY AMOUNT.</p><p> </p><p><strong>Electronic Communication</strong></p><p>By using the Site you consent to receive communications from evergreenwellness.com electronically. evergreenwellness.com will communicate with you by email or by posting notices on the Site. You agree that all notices, disclosures, agreements and other communications that evergreenwellness.com provides electronically satisfies any legal requirement that such communications be in writing.</p><p> </p><p><strong>Linked Third Party Sites</strong></p><p>Links to other websites operated by third parties, do not constitute sponsorship, endorsement, or approval by evergreenwellness.com of the content, policies, or practices of such linked sites. evergreenwellness.com does not operate, control, or maintain linked sites and is not responsible for their availability, content, security, policies, or practices. Links to other sites are provided for your convenience and you access them at your own risk.</p><p> </p><p><strong>Prices; Orders</strong></p><p>evergreenwellness.com reserves the right at any time after receipt of your order to accept or decline your order, or any portion thereof, even after your receipt of an order confirmation from evergreenwellness.com, for any reason. evergreenwellness.com reserves the right to limit the order quantity on any item and to refuse service to any customer without prior notification.</p><p> </p><p><strong>Disclaimer and Limitation of Liability</strong></p><p>evergreenwellness.com provides the Site (including all Content) “as is” without warranty of any kind, whether express or implied. You are solely responsible for damage that results from the use of the Site including, but not limited to, damage to your computer system or loss of data. EVERGREENWELLNESS.COM SPECIFICALLY DISCLAIMS ANY AND ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SECURITY, AND NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. EVERGREENWELLNESS.COM SHALL NOT BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES INCLUDING LOST PROFITS, PERSONAL INJURY (INCLUDING DEATH) AND PROPERTY DAMAGE OF ANY NATURE WHATSOEVER. IN NO EVENT SHALL OUR TOTAL LIABILITY TO YOU FOR ALL DAMAGES AND LOSSES FOR ANY CAUSE OF ACTION EXCEED THE AMOUNT PAID BY YOU, OR $100 (WHICHEVER IS LESS).</p><p> </p><p><strong>Hold Harmless and Indemnity</strong></p><p>To the maximum extent permitted by applicable law, you agree to hold harmless and indemnify evergreenwellness.com, its parent company, and their respective subsidiaries, affiliates, officers, agents, licensors, co-branders or other partners, and employees from and against any third-party claim arising from or in any way related to your use of the Site, including any liability or expense arising from all claims, losses, damages (actual and/or consequential), suits, judgments, litigation costs and attorneys’ fees, of every kind and nature.</p><p> </p><p><strong>Dispute Resolution</strong></p><p>By using the Site, you agree that all disputes, claims, or causes of action arising from or related to your use of the Site will be resolved through binding arbitration in Wichita, Kansas in accordance with the rules of the American Arbitration Association. ARBITRATION OF A DISPUTE, CLAIM OR CAUSE OF ACTION SHALL BE IN AN INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. These Terms of Use shall be construed in accordance with the laws of the state of Kansas, without giving effect to any choice or conflict of law provision. You agree to jurisdiction in Kansas.</p><p><em> </em></p><p> </p>','Terms','','inherit','closed','closed','','1089-revision-v1','','','2019-04-21 01:28:18','2019-04-21 01:28:18','',1089,'https://test.evergreenwellness.com/2019/04/21/1089-revision-v1/',0,'revision','',0),(1131,1,'2019-04-21 01:29:38','2019-04-21 01:29:38','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Traditional Chinese Medicine and Infertility\n</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Traditional Chinese Medicine and Infertility\n</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.  Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.  The body is an organic whole and its functions are interconnected.  The meridian system, which allows vital energy to flow, links the body as a whole.  The TCM practitioner will treat patients with therapies from four main categories:  Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing). </p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.  Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques. </p><p><strong>Treating Infertility</strong></p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.  Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.  For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.</p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.  This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.  Additionally, most contemporary medical treatments involve the use of numerous drugs.  The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.</p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple’s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).  In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.  One of the groups received TCM treatments before and after implantation.  The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.</p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:</p><ul><li>TCM sees a personal as an integral mind/body organism and seeks to stimulate the body’s natural healing potential by treating root causes.</li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.</li><li>Traditional Chinese Medicine may be sued to strengthen and balance one’s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient  derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.  Pregnancy becomes easier to achieve and postpartum recuperation happens faster. </li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.</li></ul><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments</strong></p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body’s systems regardless of age.  For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle. </li></ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body’s systems.</p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40’s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.</li></ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.  There is not short cut to conception but in many cases, “turning back the clock” is possible.</p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.  Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.  The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.</li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.</li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.  The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.</li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.  Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.  However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.</li></ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.</p><p>TCM treatments for infertility and other conditions is provided at the Evergreen Wellness Center.  You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information. </p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Infertility','','inherit','closed','closed','','1027-revision-v1','','','2019-04-21 01:29:38','2019-04-21 01:29:38','',1027,'https://test.evergreenwellness.com/2019/04/21/1027-revision-v1/',0,'revision','',0),(1132,1,'2019-04-21 01:31:45','2019-04-21 01:31:45','{\n    \"nav_menu_item[235]\": {\n        \"value\": {\n            \"menu_item_parent\": 0,\n            \"object_id\": 235,\n            \"object\": \"custom\",\n            \"type\": \"custom\",\n            \"type_label\": \"Custom Link\",\n            \"title\": \"Weight Loss\",\n            \"url\": \"https://test.evergreenwellness.com/weight-loss/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"nav_menu_term_id\": 7,\n            \"position\": 4,\n            \"status\": \"publish\",\n            \"original_title\": \"\",\n            \"_invalid\": false\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:31:45\"\n    }\n}','','','trash','closed','closed','','a99a7e1b-5e34-4acf-8b88-034f2dfb853c','','','2019-04-21 01:31:45','2019-04-21 01:31:45','',0,'https://test.evergreenwellness.com/2019/04/21/a99a7e1b-5e34-4acf-8b88-034f2dfb853c/',0,'customize_changeset','',0),(1133,1,'2019-04-21 01:36:05','2019-04-21 01:36:05','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>The Efficacy of Acupuncture for Stroke Rehabilitation</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation – A Randomized Controlled Trial</h2>		\n			<h3>Dr. Qizhi Gao, Wichita, KS</h3>		\n		<p><strong>OBJECTIVE:</strong> The purpose of this study was to determine the effects in the functional recovery of post stroke patients receiving multidisciplinary western rehabilitation and patients receiving acupuncture with electrical stimulation in addition to multidisciplinary western rehabilitation.</p><p><strong>BACKGROUND:</strong> Stroke is third leading cause of death in the U.S. and a leading cause of serious long-term disability. About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled. Physical, cognitive and psychological disabilities are major medical and social problems. Very little research in this area has been done in the United States.</p><p><strong>DESIGN/METHODS:</strong> The study was a 2:1 randomized study. The study group received classical acupuncture with electrical stimulation for 60 minutes in addition to their standard daily physical, occupational, and speech therapy.</p><p><strong>Intervention(s):</strong> All patients received 3 hours of therapy (physical, occupational and speech therapy) Monday through Friday and 1½ hours of therapy on weekends<strong>. </strong>Those in the study group also received acupuncture with electrical stimulation for 60 minutes on weekdays.</p><p><strong>Main Outcome Measure(s):</strong> Motor function, mobility, and daily life activities were assessed at the time of admission, every 7 days during length of stay and at the time of discharge using the Functional Independence Measure (FIM) scale.</p><p><strong>RESULTS:</strong> Patients in the control group and the study group did not differ significantly in age, gender or stroke side. There were statistically significant improvements in discharge placement and total FIM score change in the study group.</p><p><strong>CONCLUSIONS/RELEVANCE:</strong> Acupuncture is an effective adjunct to standard rehabilitation for post stroke patients as demonstrated by the 48 point FIM score change in the study group vs. the 20-point FIM score change in the control group and disposition of 90% of patients returned to their home in the study group vs. 33% in the control group.</p><p>Above paper was presented at the American Academy of Neurology 59th Annual Meeting on May 2, 2007</p><p>Supported by: Wesley Medical Research Institutes, 3306 E. Central, Wichita, KS 67208, 316-686-7172, Wesley Rehabilitation Hospital.<br />Category – Cerebrovascular Disease<br />SubCategory – Clinical Aspects</p><p> </p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Stroke Reseach','','inherit','closed','closed','','1013-revision-v1','','','2019-04-21 01:36:05','2019-04-21 01:36:05','',1013,'https://test.evergreenwellness.com/2019/04/21/1013-revision-v1/',0,'revision','',0),(1134,1,'2019-04-21 01:38:44','2019-04-21 01:38:44','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Q & A on Traditional Chinese Medicine</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Q & A on Traditional Chinese Medicine\n</h2>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy.</p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Q-A','','inherit','closed','closed','','1001-revision-v1','','','2019-04-21 01:38:44','2019-04-21 01:38:44','',1001,'https://test.evergreenwellness.com/2019/04/21/1001-revision-v1/',0,'revision','',0),(1135,1,'2019-04-21 01:42:16','2019-04-21 01:42:16','{\n    \"neve::footer-menu_color\": {\n        \"value\": \"#dd3333\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:42:16\"\n    }\n}','','','trash','closed','closed','','e0417802-dc35-46fa-bcb6-45ccdd19824d','','','2019-04-21 01:42:16','2019-04-21 01:42:16','',0,'https://test.evergreenwellness.com/?p=1135',0,'customize_changeset','',0),(1136,1,'2019-04-21 01:50:06','2019-04-21 01:50:06','<h2>Privacy Policy</h2>		\n		<p><strong>Who we are</strong></p><p>Our website address is: https://evergreenwellness.com/. We are dedicated to providing education and services in Chinese medicine.</p><p><strong>What personal data we collect and why we collect it</strong></p><p><strong>Comments</strong></p><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: <a href=\"https://automattic.com/privacy/\">https://automattic.com/privacy/</a>. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><p><strong>Media</strong></p><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><p><strong>Contact forms</strong></p><p>You can reach out to us if you have any questions or concerns on our contact page here: <a href=\"https://test.evergreenwellness.com/#contact\"><strong>https://evergreenwellness.com/contact/</strong></a></p><p><strong>Cookies</strong></p><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select “Remember Me”, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><p>Embedded content from other websites</p><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website.</p><p>Who we share your data with</p><p>We use PayPal to process your payments, so be sure to check out PayPal‘s privacy policies here:</p><p><strong><a href=\"https://www.paypal.com/us/webapps/mpp/ua/privacy-full\">https://www.paypal.com/us/webapps/mpp/ua/privacy-full</a></strong></p><p><strong>How long we retain your data</strong></p><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><p><strong>What rights you have over your data</strong></p><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><p><strong>Where we send your data</strong></p><p>Visitor comments may be checked through an automated spam detection service.</p><p><strong>Your contact information</strong></p><p>We collect only the contact information you submit in the registration form such as your email and username. If you purchase a product or sign up for a program on our site that requires your phone number or address we may also collect that for those purposes as well.</p><p>If you wish to review or for any of your data to be erased from evergreenwellness.com feel free to reach out and we can take care of that for you.</p>','Privacy Policy','','inherit','closed','closed','','1098-revision-v1','','','2019-04-21 01:50:06','2019-04-21 01:50:06','',1098,'https://test.evergreenwellness.com/2019/04/21/1098-revision-v1/',0,'revision','',0),(1137,1,'2019-04-21 01:53:39','2019-04-21 01:53:39','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Introduction to Traditional Chinese Medicine <br> \nHolistic Concept, Dynamic View and Natural Therapies</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>\nIntroduction to Traditional Chinese Medicine <br> <br>\nHolistic Concept, Dynamic View and Natural Therapies</h2>		\n		<p>Traditional Chinese Medicine (TCM) has been developing for over two thousand years. Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts, through the ages, have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>I. The Holistic Concept</p><p>In TCM, the holistic concept includes integrity of the body and it’s relationship with the natural world.</p><p>The body is an organic whole and its functions are interconnected. A meridian system which allows vital energy flow links the body as a whole. Imagine the human body as a city, and its meridians as streets net in the city linking all the organs, joints and muscles together. Consider the blood in the body as a vehicle and the vital energy as the driver. When a street has a traffic jam, the related streets are affected. As with the streets of a city, the meridian transports vital energy to maintain the harmony of physiological activities for all parts of the body. If the energy and blood cannot be transported to a part of the body, that part of the body will not perform normally and you may feel uncomfortable, pain or sickness. In daily life, a small cut could cause a whole body symptom such as high fever or fatigue. While analyzing the pathogenesis of a disease the TCM physician begins with the whole body and the symptoms caused by local processes. The physician takes into account the local pathological changes, viscera and meridians directly concerned with the illness.  The physician also considers the influence of the affected organ and meridian upon other viscera and meridians.</p><p>There is a close relationship between the body, natural, geographic, working and family environments. Weather changes, season changes, moving from the coast to Kansas, a friendly or unfriendly boss or colleague, happy or unhappy family all influence your health.  TCM holds that man can not only actively adapt to nature, but also remold it, so as to increase the level of health and reduce disease, e.g. <em>Do more physical exercise to prevent the effects of pathogenic cold, live in a shady or cool place to avoid pathogenic summer heat. — </em>As stated in<em> Plain Questions, </em>a Chinese medicine book published about 2000 years ago.<em>  </em>The body maintains its normal activities by adapting itself to the environment and remolding the natural environment to preserve the integrity of the body.</p><p><strong>II. Dynamic View</strong></p><p>TCM, greatly influenced by ancient Chinese materialism and dialectics, believes that all things are not static and isolated but interconnected. The body is an organic whole that constantly moves. So does a disease development. For instance, if a common cold with pain in the head and body, fever, and perspiration at start stage does not get controlled, it could be developing another stage, such as high fever, persistent perspiration, restlessness, even semi-consciousness.  <strong>As a pathological generalization of disease in its certain stage which is called <u>syndromes</u> in TCM. <u>Syndromes</u> reflect the law and nature of a disease thus serving as a basis for TCM treatment</strong>. Therefore, they differ from symptoms.  For example, a patient has all symptoms: palpitation, insomnia, dizziness, blurred vision, numb hands and feet, scanty menstruation and an irregular menstrual cycle. In the Western medical system the patient may see her family doctor for palpitation, insomnia and dizziness, visit her optometrist for blurred vision, receive an adjustment from her chiropractor for numb hands and feet and consult her ob/gyn concerning her scanty menstruation and irregular menstrual cycle.</p><p>In the TCM medical system the TCM physician believes all the complaints from this patient are related. In addition to the complaints mentioned above, the TCM physician observes the patient has a pale complexion, light-colored lips, pale tongue and feeble pulse. In TCM the patient’s symptoms are diagnosed as blood deficiency syndrome. The syndrome is often related to a number of causes such as chronic or acute bleedings in various forms, hypofunction of the spleen and stomach, weariness resulting from over thinking, impairment of prolonged illness, homatopoietic disorder due to internal blood stagnation and so on.</p><p>The reason for the patient’s symptoms can be explained as follows: Dizziness, blurred vision, pale complexion and light colored lips may appear when deficient blood fails to nourish the head, eyes and face. Lack of blood flow to nourish the heart leads to palpitation and insomnia. A malnourished meridian (vessel) leads to numb hands and feet. When the tongue is not nourished by blood, it becomes light-colored. Additionally, when the meridian is not enriched with blood, the pulse becomes feeble.</p><p>At this point in the diagnosis, a treatment plan is provided to tonify the blood in accordance with the causes mentioned above, the condition of the patient and the severity of the chief complaint.</p><p> From the example mentioned above, the TCM physician may provide <em>the same treatment for different diseases</em> such as dizziness, palpitation, insomnia and irregular menstrual cycle if each of these symptoms is related to blood deficiency syndrome. Additionally<em>, different treatment for the same diseases</em> is applied when the same disease is manifested by different syndromes. For instance, insomnia could be caused by excessive liver yang, which is accompanied by vertigo and tinnitus, distension and headache, flushed face and congestive eyes, dark-red tongue and rapid pulse. Treatment to replenish the yin and calm liver yang is provided. This differs from the blood tonification treatment provided for blood deficiency syndrome.</p><p>As with a tree, a syndrome is the root of disease, which reflects the law, and nature of a disease in its certain stage. The TCM physician treats the syndrome (root) rather than symptoms (leaves).</p><p><strong>III. Natural Therapies</strong></p><p> TCM therapies include four main categories: Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese massage) and Qigong (energy healing).</p><ol><li><strong>Acupuncture and Moxibustion</strong></li></ol><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>In 1979 the World Health Organization recommended 43 diseases that can be helped by Acupuncture and Moxibustion.  Over 381 diseases in China have successfully been treated by Acupuncture and Moxibustion therapy. Also millions of surgical operations with acupuncture analgesia have been conducted in China. None of them led to death attributed to needling.</p><ol start=\"2\"><li><strong>Herbal Medicine</strong></li></ol><p><strong> </strong>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China. Herbal medicine can also be used to prevent various health problems.</p><ol start=\"3\"><li><strong>Tuina Anmo -Chinese Massage</strong></li></ol><p><strong> </strong>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><ol start=\"4\"><li><strong>Qigong</strong></li></ol><p><strong> </strong>Qigong is a method to exercise the body’s vital energy. It combines body movement, breathe exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose. Qigong has been widely used to treat many chronic diseases such as hepatitis, hypertension, bronchial asthma, weight loss and cancer. Qigong also serves as an anesthetic technique in certain surgical operations. At present, the application and research of Qigong have gone far beyond the scope of medical practice.</p><p>Besides Herbal medicine, which is mostly taken orally, all the other TCM therapies are applied to the body surface for healing. All four kinds of therapies are natural.</p><p> No matter what kinds of therapies a TCM physician chooses, all is based on TCM theory, the TCM diagnosis method and treatment plan. In China, education requirements for a TCM physician are similar to those of a U.S. medical doctor. One must graduate from a 4-8 year medical school program or complete an equal number of years in apprenticeship for a specialized field. In the United States, NCCAOM (National Certification Commission of Acupuncture and Oriental Medicine) offers a high-level test annually for certification in both Acupuncture and Chinese herbal medicine. Prior to the examination, the candidate is required to complete at least 3-4 years of full time TCM medical school.</p><p> If you are looking for a TCM practitioner in your area, go to www.nccaom.org, to find a practitioner.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','TCM introduction','','inherit','closed','closed','','921-revision-v1','','','2019-04-21 01:53:39','2019-04-21 01:53:39','',921,'https://test.evergreenwellness.com/2019/04/21/921-revision-v1/',0,'revision','',0),(1138,1,'2019-04-21 01:54:48','2019-04-21 01:54:48','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>\nTraditional Chinese Medicine <br> and Stroke Rehabilitation</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>\nTraditional Chinese Medicine and Stroke Rehabilitation</h2>		\n		<p>In addition being the third leading cause of death in the U.S., strokes are a leading cause of serious long-term disability.  About 700,000 Americans suffer a stroke each year, and almost half of those who survive are permanently disabled.  That number is expected to surpass the 1 million mark by 2050.  Significant physical, cognitive and psychological disabilities create major medical and social problems. </p><p>In the current medical climate, the type and amount of stroke rehabilitation a patient receives is many times dictated by insurance plan offerings, yet medical practitioners are unanimous in agreement that a comprehensive rehabilitative therapy program  provides the best chance of meaningful recovery.  Of the 72 million Americans that have experienced serious injury, stroke or other disabling disease more that 60 percent never receive proper rehabilitation.  Yet, the earlier rehabilitation begins the more likely the patient is to regain the ability to function and return to a productive satisfying life.</p><p>A stroke or cerebral vascular accidents (CVA) occur when a blood clot blocks a blood vessel or artery, or when a blood vessel breaks, interrupting blood flow to an area of the brain.  When a patient survives a stroke, all but a small percentage of them suffer from limitations in functional activities and subsequently do not become self-sufficient. We called it post-stroke syndrome.</p><p>According to National Stroke Association, there are nearly 4 million people in the United States who have survived a stroke and are living with the after-effects. These numbers do not reflect the scope of the problem and do not count the millions of husbands, wives and children who live with and care for stroke survivors and who are, because of their own altered lifestyle, greatly affected by stroke.  In the United States, Post-stroke patients normally receive physical therapy<em> (PT)</em>, Occupational therapy <em>(OT)</em> and/or Speech language pathology for their rehabilitation.</p><p>From Traditional Chinese Medicine (TCM) aspect, stroke caused by imbalance of <em>Yin </em>and<em> Yang </em>of inner organ and imbalance <em>Qi</em> and <em>blood.</em> The classification of <em>Synopsis of the Golden Chamber, </em>wrote by Zhang Zhongjing, a famous TCM doctor in the Eastern Han dynasty (300 AD), had described the symptoms and treatment method. Now many studies have been done for post-stroke patients to speed rehabilitation using TCM therapy such as Acupuncture and Moxibustion, Herbs, Tuina Anmo (Chinese Massage) and Qigong (Energy Healing). Following is a further explain these therapies and some results of studies that have been performed to date.</p><p><strong><em>Acupuncture and Moxibustion Therapy</em></strong></p><p>In acupuncture the TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Thus the treatment plan is accomplished according to the patient’s syndrome. Acupuncture points are like traffic lights on the city street. The TCM physician or Acupuncturist utilizes the needles just like traffic lights to control traffic flow.</p><p>Moxibustion treats and prevents disease by applying heat to points or certain locations of the body. The material used is mainly <em>moxa-wool</em> in the form of a cone or stick. For centuries, Moxibustion and Acupuncture have been combined in clinic practice, Thus they are usually termed together in Chinese.</p><p>The study done by Chen YM, et al shows that for 108 cases of hemiplegia or paralysis of on eside of the body caused by stroke, early treatment (first three weeks) with acupuncture produces better result than the treatment initiated three weeks after stroke. The improvement rate is from 90.9% down to 71.4%.</p><p>Another study done by Kjendahl A, et al, Sunnaas Rehabilitation Hospital, Nesoddtangen, Norway shows that the acupuncture group improved significantly more than the controls, both during the treatment period of six weeks, and even more during the following year, both according to MAS, ADL, NHP and the social situation.</p><p><strong><em>Herbal Therapy</em></strong></p><p>In ancient China TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and so forth. Today hundreds of different herb formulas are used to treat different diseases. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics. These formulas have been used for hundreds of years in China.</p><p>The study done by Lin Faching, et al, Department of Neurology, Renji Hospital, Shanghai, China described: Of the 78 cased for which clinical signs were evaluated: vertigo was found in 43 cases (55.12%), nystagmus (rapid rhythmic repetitious involuntary (unwilled) horizontal, vertical or rotary eye movements) in 34 cases (43.59%), mental disorders ( including confusion, depression, disorientation, conscious blur and insomnia) in 14 cases (17.94%), motor paralysis in 28 cases (35.89 %), ataxia (Wobbliness. Lack of coordination and unsteadiness due to the brain’s failure to regulate the body’s posture and regulate the strength and direction of limb movements) in 18 cases (23.07%), sensory disorders in 12 cases (15.38%), and dyslalia (an articulatory disorder in which a patient does not pronounce the sounds clearly or they replace one sound for another) in 7 cases (8.97%). When the herb formulas were used in treatment, of the entire case sample, 97.44% reported an improvement in some symptoms and a satisfactory result was judged to be 74.36%. No obvious side effects were noted as a result of treatment when using the herbs.</p><p><strong><em>Tuina Anmo (Chinese Massage) Therapy</em></strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo could be used in all areas of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>The article wrote by Li Yangao, et al, The Bethune International Peace Hospital, China, mentioned that 44 patients had suffered from hemiplegia or paralysis of one side of the body due to stroke. The average age of patients was 54. The disease course had lasted from one month to three years, with an average of 105 days. They were treated by Tuina  Anmo therapy from 10 to 60 times, with an average of 24 times. The result is: 18 out of 44 cases improved obviously, 18 improved, 8 cases failed, the effective rate was 81.82%.</p><p><strong><em>Qigong (Energy Healing) Therapy</em></strong></p><p>Qigong is a method to exercise the body’s vital energy. It combines body movement, breath, exercise and mind concentration. Qigong uses body movement to conduct the Qi (vital energy) to the place in which the mind concentrated. At the same time different breath techniques are applied depending on the exercise purpose.</p><p>According to <em>147 cases of hemiplegia due to cerebrovascular accident treated by Qigong</em>, Zhang Xia, presented on the Fourth World Conference on Medical Qigong, the total effective rate is 93.2% in 12 weeks treatment period.</p><p><strong><em>Integrative Therapy of Traditional Chinese and Western Medicine</em></strong></p><p>It includes Acupuncture and Moxibustion Therapy, Herbal Therapy, Tuina Anmo (Chinese Massage) Therapy, Qigong Therapy, Physical Therapy, Occupational Therapy and speech training.</p><p>Wang Shaoqin et al, Beijing Rehabilitation Hospital, China, report their study on 100 cases of post-stroke patients treated by an integrated therapy of Traditional Chinese and Western medicine. After the 3 months treatment, the total effective rate was 83%. For post-cerebral hemorrhage cases the total effective rate was 89.29%, for post-cerebral infarction was 80.56%. The overall effective rate of 67 cases under age 60 was 91.04, of over age 60 was 66.67%. There was extremely significant difference between these two age groups. The total effective rate of 50 cases whose treatment started within 6 months after stroke was 94%; the effective rate of 50 cases whose treatment started within 6 months later stroke was 72%. There was extremely significant difference between these two age groups, too.</p><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.</p><p>TCM treatments for stroke and other conditions is provided at the Evergreen Wellness Center.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Stroke','','inherit','closed','closed','','1019-revision-v1','','','2019-04-21 01:54:48','2019-04-21 01:54:48','',1019,'https://test.evergreenwellness.com/2019/04/21/1019-revision-v1/',0,'revision','',0),(1139,1,'2019-04-21 01:57:55','2019-04-21 01:57:55','{\n    \"nav_menu_item[-3282934759200796700]\": {\n        \"value\": {\n            \"object_id\": 0,\n            \"object\": \"custom\",\n            \"menu_item_parent\": 0,\n            \"position\": 4,\n            \"type\": \"custom\",\n            \"title\": \"Contact\",\n            \"url\": \"https://test.evergreenwellness.com/?customize_changeset_uuid=10433e5e-4977-4de6-9de5-ac9b6585e518&customize_messenger_channel=preview-0#contact\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Contact\",\n            \"nav_menu_term_id\": 12,\n            \"_invalid\": false,\n            \"type_label\": \"Custom Link\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 01:57:55\"\n    }\n}','','','trash','closed','closed','','10433e5e-4977-4de6-9de5-ac9b6585e518','','','2019-04-21 01:57:55','2019-04-21 01:57:55','',0,'https://test.evergreenwellness.com/2019/04/21/10433e5e-4977-4de6-9de5-ac9b6585e518/',0,'customize_changeset','',0),(1140,1,'2019-04-21 01:57:55','2019-04-21 01:57:55','','Contact us','','publish','closed','closed','','contact-2','','','2019-04-21 02:01:35','2019-04-21 02:01:35','',0,'https://test.evergreenwellness.com/2019/04/21/contact-2/',4,'nav_menu_item','',0),(1141,1,'2019-04-21 02:00:17','2019-04-21 02:00:17','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>\nTCM and Heart Diseases </h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>TCM and Heart Diseases <br>\nChinese Medicine (TCM) Diagnosis of Heart Disease</h2>		\n		<section data-id=\"260f1af\" data-element_type=\"section\"><p>In Chinese medicine, chest pain and heart failure have many different causes. The basic cause of chest pain is obstruction of the circulation of Qi and blood. Chest pain may be caused by either deficiency or excess patterns. Deficient patterns include weak circulation of blood with pooling of blood causing stickiness or increased viscosity of the blood (yin deficiency) which causes stagnation of both Qi and blood. Excess patterns include pathogenic substances which block the circulation of Qi and blood. Generally heart failure is a complex disorder which combines both excess patterns with underlying deficiency patterns (root and branch).</p><p>Kidney Yang, Heart Yang, and Lung Yang deficiency are the most prominent patters which may result in water retention and/or Blood Stasis.<br />Kidney and Heart control whole body Yang<br />Right foot edema – Yang Qi disorders<br />Left foot edema – Yin disorders</p><p>Chinese Medicine Heart Pain Patterns</p><p><strong>Heart Yang Deficiency</strong></p><p>Yang deficiency is the root of many chest pain patterns that involve the heart, especially those which are due to deficiency cold and phlegm obstruction. With yang deficiency there is accumulation of cold, the heart is weakened therefore circulation is impaired and fluids are failed to be transformed accumulating into phlegm and dampness.</p><p>Clinical symptoms of yang deficiency are chest pain as if heart is being squeezed and crushed, cold limbs, aversion to cold and other yang deficiency symptoms.</p><p><strong>Heart Qi Deficiency</strong></p><p>Similarly to yang deficiency, heart Qi deficiency will manifest similar symptoms with less cold and milder pain. Heart Qi deficiency has a weakened heart and poor circulation therefore Qi and blood stagnation and fluids are not transformed properly giving rise to phlegm and dampness.</p><p>Clinical symptoms of Qi deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters.</p><p><strong>Heart Qi and Blood Deficiency</strong></p><p>General overwork and excessive worry or mental activity, irregular dietary habits, excessive consumption of cold, raw foods or prolonged illness can weaken the spleen Qi and there fore it’s blood production giving rise to Qi and blood deficiency and heart disease. When Qi is weakened it is unable to circulate properly in the body giving rise to stagnation of either Qi or blood or both and phlegm accumulation due to the weakened spleen function.</p><p>Clinical symptoms of Qi and blood deficiency are mild pain in chest, stuffiness in chest, shortness of breath, all symptoms aggravated by physical activity, palpitations and flutters (same as heart Qi deficiency) with paleness of face, tongue and eye lids as well as difficulty falling asleep.</p><p><strong>Heart and Kidney Yin Deficiency</strong></p><p>Kidney yin will become damaged through overwork, late nights, inadequate sleep, excess sexual behaviour, drug use, pregnancy, febrile illness and in general aging. Heart yin will be damaged through emotional trauma, shock, ongoing anxiety and excessive worry. When the kidney yin is weak it is unable to support the heart yin and they become unbalanced and blood circulation begins to stagnate due to increased blood viscosity. The deficiency yin heat then congeals fluids into phlegm creating both blood and phlegm stagnation.</p><p>Clinical symptoms of kidney and heart yin deficiency are burning pains with palpitations, dizziness, red/dry tongue with no coat, 5 heat sensation, insomnia and possible eye disorders.</p><p><strong>Heart Blood Stagnation</strong></p><p>Blood stagnation causing heart disease is usually the end result of other prolonged illness’s effecting the upper jiao area. Generally, any pathology excess or deficient if chronic may lead to blood stagnation.</p><p>Clinical symptoms of blood stagnation are palpitations, oppression in the chest, periodic chest pain, purplish discoloration of the lips and nails with a dark purple tongue and a rough thready or intermittent pulse.</p><p><strong>Phlegm Fluid Stagnation</strong></p><p>Phlegm is a frequently implicated pathogen in chest pain and heart failure mainly due to a poor diet or liver qi stagnation overacting on the spleen.</p><p>Clinical symptoms of phlegm are watery sputum, rattling sputum in chest, stuffiness in chest, distention of chest worse on overcast or rainy days, greasy tongue coat.</p><p><strong>Liver Qi Stagnation</strong></p><p>General emotional imbalances can cause the movement of Qi in different organs to not circulate effectively leading to Qi and possibly blood stagnation. The liver meridian traverses the chest and is most notably effected by stress, anger and any other emotional upsets. These upsets can cause the liver to cause disharmony not only with itself but also with the heart and lungs.</p><p>Clinical symptoms of Liver Qi stagnation are mild recurrent fullness/stuffiness or tightness of the chest that is not localized to one particular area. The patient will sigh frequently, appear uptight, anxious or depressed and possibly experience dizziness and hyperventilation. The pulse will be wiry and the tongue may not have any significant characteristics.</p></section><section data-id=\"1b3628b\" data-element_type=\"section\">     </section><section data-id=\"2f5dbcc\" data-element_type=\"section\"> </section>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Heart','','inherit','closed','closed','','1023-revision-v1','','','2019-04-21 02:00:17','2019-04-21 02:00:17','',1023,'https://test.evergreenwellness.com/2019/04/21/1023-revision-v1/',0,'revision','',0),(1142,1,'2019-04-21 02:01:35','2019-04-21 02:01:35','{\n    \"nav_menu_item[1140]\": {\n        \"value\": {\n            \"menu_item_parent\": 0,\n            \"object_id\": 1140,\n            \"object\": \"custom\",\n            \"type\": \"custom\",\n            \"type_label\": \"Custom Link\",\n            \"title\": \"Contact us\",\n            \"url\": \"https://test.evergreenwellness.com/?customize_changeset_uuid=10433e5e-4977-4de6-9de5-ac9b6585e518&customize_messenger_channel=preview-0#contact\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"nav_menu_term_id\": 12,\n            \"position\": 4,\n            \"status\": \"publish\",\n            \"original_title\": \"\",\n            \"_invalid\": false\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-04-21 02:01:35\"\n    }\n}','','','trash','closed','closed','','1de7cde7-4d40-4236-a8df-39ec418e4153','','','2019-04-21 02:01:35','2019-04-21 02:01:35','',0,'https://test.evergreenwellness.com/2019/04/21/1de7cde7-4d40-4236-a8df-39ec418e4153/',0,'customize_changeset','',0),(1143,1,'2019-04-21 14:06:55','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2019-04-21 14:06:55','0000-00-00 00:00:00','',0,'https://test.evergreenwellness.com/?page_id=1143',0,'page','',0),(1146,1,'2019-04-21 17:19:57','2019-04-21 17:19:57','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Weight management</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h3>Acupuncture for Weight Loss</h3>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h3>herb for Weight Loss</h3>		\n			<figure><a href=\"https://ibreathin.com\"><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/Dr-Gao_2010-011-1024x731-150x150.jpg\" alt=\"\" /></a></figure><h3><a href=\"https://ibreathin.com\">Qigong for Weight Loss</a></h3><p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?<br>\nKAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!<br>\nQigong – Breathing Yourself Thin. Click Here for more detail about online class.</p>','Weight Loss','','inherit','closed','closed','','1076-revision-v1','','','2019-04-21 17:19:57','2019-04-21 17:19:57','',1076,'https://test.evergreenwellness.com/2019/04/21/1076-revision-v1/',0,'revision','',0),(1145,1,'2019-04-21 17:10:58','2019-04-21 17:10:58','','Dr-Gao_2010-011-1024x731','','inherit','open','closed','','dr-gao_2010-011-1024x731','','','2019-04-21 17:10:58','2019-04-21 17:10:58','',1076,'https://test.evergreenwellness.com/wp-content/uploads/2019/04/Dr-Gao_2010-011-1024x731.jpg',0,'attachment','image/jpeg',0),(1148,1,'2019-04-21 20:24:57','2019-04-21 20:24:57','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Weight management</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Weight Management and Chinese Medicine</h2>		\n		<p>In traditional Chinese medicine, excessive weight gain is mostly due to the imbalance of inner organs\' function. </p><p>Eating more or less, healthy diet or unhealthy diet, it will affect your weight management. But you may find that you, and other family members eat same food, someone eat less, still gain weight, but others may not, even they eat more.</p><p>Physical exercises help weight management. However, it may get opposite result from your goal if you make yourself too exhaust. Hormone imbalance is often be blamed for weight issue. Fatigue is one of main reason to cause hormone imbalance.  </p><p>So, balancing inner organs\' function plays a very important role for the ability to process the food or reduce fatigue.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h3>Acupuncture for Weight Loss</h3><p>In your initial visit, doctor will make a treatment plan according your health status, your goal for weight management. Acupuncture is used to balance your inner organs\' function</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h3>herb for Weight Loss</h3><p>In your initial visit, doctor will make a treatment plan for you according your health status, your goal for weight management. Herb pills will be recommended.</p>		\n			<figure><a href=\"https://ibreathin.com\"><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/Dr-Gao_2010-011-1024x731-150x150.jpg\" alt=\"\" /></a></figure><h3><a href=\"https://ibreathin.com\">Qigong for Weight Loss</a></h3><p>Qigong – Breathing Yourself Thin. You can do it to improve your health as long as you can breathe. Click on the picture for more detail about online class.</p>','Weight Loss','','inherit','closed','closed','','1076-revision-v1','','','2019-04-21 20:24:57','2019-04-21 20:24:57','',1076,'https://test.evergreenwellness.com/2019/04/21/1076-revision-v1/',0,'revision','',0),(1149,1,'2019-04-21 20:31:59','2019-04-21 20:31:59','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Weight management</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"#more-features\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Weight Management and Chinese Medicine</h2>		\n		<p>In traditional Chinese medicine, excessive weight gain is mostly due to the imbalance of inner organs\' function. </p><p>Eating more or less, healthy diet or unhealthy diet, it will affect your weight management. But you may find that you, and other family members eat same food, someone eat less, still gain weight, but others may not, even they eat more.</p><p>Physical exercises help weight management. However, it may get opposite result from your goal if you make yourself too exhaust. Hormone imbalance is often be blamed for weight issue. Fatigue is one of main reason to cause hormone imbalance.  </p><p>So, balancing inner organs\' function plays a very important role for the ability to process the food or reduce fatigue.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h3>Acupuncture for Weight Loss</h3><p>In your initial visit, doctor will make a treatment plan according your health status, your goal for weight management. Acupuncture is used to balance your inner organs\' function</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h3>herb for Weight Loss</h3><p>In your initial visit, doctor will make a treatment plan for you according your health status, your goal for weight management. Herb pills will be recommended.</p>		\n			<figure><a href=\"https://ibreathin.com\"><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/Dr-Gao_2010-011-1024x731-150x150.jpg\" alt=\"\" /></a></figure><h3><a href=\"https://ibreathin.com\">Qigong for Weight Loss</a></h3><p>Qigong – Breathing Yourself Thin. You can do it to improve your health as long as you can breathe. Click on the picture for more detail about online class.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Weight Loss','','inherit','closed','closed','','1076-revision-v1','','','2019-04-21 20:31:59','2019-04-21 20:31:59','',1076,'https://test.evergreenwellness.com/2019/04/21/1076-revision-v1/',0,'revision','',0),(1150,1,'2019-04-21 20:33:47','2019-04-21 20:33:47','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Weight management</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Weight Management and Chinese Medicine</h2>		\n		<p>In traditional Chinese medicine, excessive weight gain is mostly due to the imbalance of inner organs\' function. </p><p>Eating more or less, healthy diet or unhealthy diet, it will affect your weight management. But you may find that you, and other family members eat same food, someone eat less, still gain weight, but others may not, even they eat more.</p><p>Physical exercises help weight management. However, it may get opposite result from your goal if you make yourself too exhaust. Hormone imbalance is often be blamed for weight issue. Fatigue is one of main reason to cause hormone imbalance.  </p><p>So, balancing inner organs\' function plays a very important role for the ability to process the food or reduce fatigue.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h3>Acupuncture for Weight Loss</h3><p>In your initial visit, doctor will make a treatment plan according your health status, your goal for weight management. Acupuncture is used to balance your inner organs\' function</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h3>herb for Weight Loss</h3><p>In your initial visit, doctor will make a treatment plan for you according your health status, your goal for weight management. Herb pills will be recommended.</p>		\n			<figure><a href=\"https://ibreathin.com\"><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/Dr-Gao_2010-011-1024x731-150x150.jpg\" alt=\"\" /></a></figure><h3><a href=\"https://ibreathin.com\">Qigong for Weight Loss</a></h3><p>Qigong – Breathing Yourself Thin. You can do it to improve your health as long as you can breathe. Click on the picture for more detail about online class.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Weight Loss','','inherit','closed','closed','','1076-revision-v1','','','2019-04-21 20:33:47','2019-04-21 20:33:47','',1076,'https://test.evergreenwellness.com/2019/04/21/1076-revision-v1/',0,'revision','',0),(1151,1,'2019-04-21 21:59:28','2019-04-21 21:59:28','<h1>We offer better Traditional Chinese Medicine services </h1>		\n			<h6>Weight management</h6>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>\n			<a href=\"https://test.evergreenwellness.com/#contact\" role=\"button\">\n						Contact us\n					</a>\n			<h2>Weight Management and Chinese Medicine</h2>		\n		<p>In traditional Chinese medicine, excessive weight gain is mostly due to the imbalance of inner organs\' function. </p><p>Eating more or less, healthy diet or unhealthy diet, it will affect your weight management. But you may find that you, and other family members eat same food, someone eat less, still gain weight, but others may not, even they eat more.</p><p>Physical exercises help weight management. However, it may get opposite result from your goal if you make yourself too exhaust. Hormone imbalance is often be blamed for weight issue. Fatigue is one of main reason to cause hormone imbalance.  </p><p>So, balancing inner organs\' function plays a very important role for the ability to process the food or reduce fatigue.</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/acupuncture_500-e1522635045797-150x150.jpg\" alt=\"\" /></figure><h3>Acupuncture for Weight Loss</h3><p>In your initial visit, doctor will make a treatment plan according your health status, your goal for weight management. Acupuncture is used to balance your inner organs\' function</p>		\n			<figure><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/mhrf-cpmh17815-150x150.jpg\" alt=\"\" /></figure><h3>herb for Weight Loss</h3><p>In your initial visit, doctor will make a treatment plan for you according your health status, your goal for weight management. Herb pills will be recommended.</p>		\n			<figure><a href=\"https://ibreathin.com\"><img width=\"150\" height=\"150\" src=\"https://test.evergreenwellness.com/wp-content/uploads/2019/04/Dr-Gao_2010-011-1024x731-150x150.jpg\" alt=\"\" /></a></figure><h3><a href=\"https://ibreathin.com\">Qigong for Weight Loss</a></h3><p>Qigong – Breathing Yourself Thin. You can do it to improve your health and to reach your weight management goal as long as you can breathe. Click on the picture for more detail about the online class.</p>		\n			<h4>Do you need help?</h4>		\n			<a href=\"https://ehr.unifiedpractice.com/Public/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\" role=\"button\">\n						Make an appointment\n					</a>','Weight Loss','','inherit','closed','closed','','1076-revision-v1','','','2019-04-21 21:59:28','2019-04-21 21:59:28','',1076,'https://test.evergreenwellness.com/2019/04/21/1076-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp9z_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9z_term_relationships`
--

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

--
-- Dumping data for table `wp9z_term_relationships`
--

LOCK TABLES `wp9z_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp9z_term_relationships` DISABLE KEYS */;
INSERT INTO `wp9z_term_relationships` VALUES (1,1,0),(232,7,0),(54,4,0),(56,4,0),(57,3,0),(233,7,0),(235,7,0),(935,7,0),(923,6,0),(239,7,0),(243,7,0),(889,6,0),(1120,12,0),(1119,12,0),(518,2,0),(1118,12,0),(668,8,0),(520,2,0),(528,2,0),(552,2,0),(840,6,0),(893,6,0),(1116,11,0),(1115,11,0),(1114,11,0),(1113,11,0),(1112,11,0),(1140,12,0);
/*!40000 ALTER TABLE `wp9z_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9z_term_taxonomy`
--

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

--
-- Dumping data for table `wp9z_term_taxonomy`
--

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

--
-- Table structure for table `wp9z_termmeta`
--

DROP TABLE IF EXISTS `wp9z_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9z_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_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_termmeta`
--

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

--
-- Table structure for table `wp9z_terms`
--

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

--
-- Dumping data for table `wp9z_terms`
--

LOCK TABLES `wp9z_terms` WRITE;
/*!40000 ALTER TABLE `wp9z_terms` DISABLE KEYS */;
INSERT INTO `wp9z_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Enjoy','enjoy',0),(3,'Sports','sports',0),(4,'Travelling','travelling',0),(5,'page','page',0),(6,'section','section',0),(7,'Main menu','main-menu',0),(8,'Primary Menu','primary-menu',0),(12,'Footer Two','footer-two',0),(11,'Footer One','footer-one',0);
/*!40000 ALTER TABLE `wp9z_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9z_usermeta`
--

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

--
-- Dumping data for table `wp9z_usermeta`
--

LOCK TABLES `wp9z_usermeta` WRITE;
/*!40000 ALTER TABLE `wp9z_usermeta` DISABLE KEYS */;
INSERT INTO `wp9z_usermeta` VALUES (1,1,'nickname','Leo'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp9z_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp9z_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy'),(15,1,'show_welcome_panel','1'),(17,1,'wp9z_dashboard_quick_press_last_post_id','1152'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"70.168.112.0\";}'),(19,1,'boldgrid_dismissed_admin_notices','a:2:{s:2:\"id\";s:13:\"bg-key-prompt\";s:9:\"timestamp\";i:1555171084;}'),(20,1,'jetpack_tracks_anon_id','jetpack:7AR8Bvs+aaFoT9m69llXDWZw'),(21,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(22,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(23,1,'wp9z_user-settings','libraryContent=browse&editor=tinymce'),(24,1,'wp9z_user-settings-time','1555201628'),(25,1,'elementor_introduction','a:1:{s:10:\"rightClick\";b:1;}'),(27,1,'session_tokens','a:1:{s:64:\"446532dcd5d4a734a287bb93205099e537fad490416e5facd85c71d15d86b825\";a:4:{s:10:\"expiration\";i:1556376002;s:2:\"ip\";s:14:\"70.168.112.122\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:5:\"login\";i:1556203202;}}'),(26,1,'nav_menu_recently_edited','10');
/*!40000 ALTER TABLE `wp9z_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9z_users`
--

DROP TABLE IF EXISTS `wp9z_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9z_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) 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_users`
--

LOCK TABLES `wp9z_users` WRITE;
/*!40000 ALTER TABLE `wp9z_users` DISABLE KEYS */;
INSERT INTO `wp9z_users` VALUES (1,'Leo','$P$BNm4hakwaNzT37aY68DDub4j0YiinY1','Leo','admin@evergreenwellness.com','','2019-04-13 15:54:33','',0,'Leo');
/*!40000 ALTER TABLE `wp9z_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9z_wpforms_lite`
--

DROP TABLE IF EXISTS `wp9z_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9z_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9z_wpforms_lite`
--

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

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

-- Dump completed on 2019-04-25 10:40:14
